/* =========================================
   7. FAQ SECTION STYLES
   ========================================= */
.faq-section { 
    background: var(--c-sand-bg); 
    padding: 25px 0; 
    border-top: 1px solid var(--c-sand-dark); 
    margin-top: 25px;
}

.faq-grid { 
    max-width: 800px; 
    margin: 15px auto 0; 
}

.faq-item { 
    border-bottom: 1px solid #eee; 
}

.faq-question {
    padding: 20px 0; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--c-deep-blue); 
    transition: color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-question:hover { 
    color: var(--c-gold); 
}

.faq-answer {
    max-height: 0; 
    overflow: hidden; 
    color: #666; 
    font-size: 0.95rem; 
    padding-right: 20px;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease-in;
}

.faq-item.active .faq-answer { 
    max-height: 1000px; 
    padding-top: 10px;
    padding-bottom: 20px; 
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease-out;
}

.faq-icon { 
    color: var(--c-gold); 
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

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