.faq-hero {
    position: relative;
    padding: 6rem 2rem 5rem calc(50px + 2rem);
    background: linear-gradient(135deg, 
        rgba(74, 123, 140, 0.9), 
        rgba(245, 167, 167, 0.85)),
        url('../images/faq-hero.jpg') center/cover;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 6rem 2rem 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-category h2 {
        font-size: 2rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }
} 