.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #FCE4EC 0%, #FAD2E0 15%, #FAD2E0 85%, #FCE4EC 100%);
    text-align: center;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-h2);
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #FCE4EC;
    margin: 0.5rem auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    will-change: transform, box-shadow;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #FCE4EC;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-h3);
    color: #2c3e50;
    transition: color 0.3s ease;
    min-height: 48px;
    /* Touch target */
}

.faq-question:hover {
    color: #5d6d7e;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    will-change: transform;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-size: var(--fs-body);
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 1150px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-item {
        padding: 2rem 1.5rem;
    }

    /* Font sizes handled by variables */
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    /* Font sizes handled by variables */

    .faq-item {
        padding: 1.5rem 1rem;
    }

    /* Font sizes handled by variables */

    /* Font sizes handled by variables */
}

@media (max-width: 1150px) {
    .faq-section {
        background-color: transparent;
    }
}

/* Mobile Polish (Moved from mobile-nav.css) */
@media (max-width: 1150px) {
    #faq.section-active .faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        border: none;
        overflow: hidden;
    }

    #faq.section-active .faq-question {
        padding: 1.2rem;
        font-weight: 600;
    }

    #faq.section-active .faq-answer {
        background: #fafafa;
    }
}