.header {
    position: relative;
    background-color: var(--background-color);
    min-height: 100vh;
    overflow: hidden;
}

.header-content {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-image-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .header-image-container {
        height: 50vh;
        clip-path: none;
    }
    
    .header-content {
        padding: 1rem;
    }
}