/* FAQ Styles */
.faq-answer {
    display: none;
    padding: 1rem;
    color: var(--color-neutral-600);
    background-color: var(--color-neutral-50);
    border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: var(--color-white);
    border: 1px solid var(--color-neutral-200);
    padding: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--color-neutral-50);
    border-radius: 8px 8px 0 0;
    color: var(--color-gold);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
    color: var(--color-neutral-400);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: var(--color-gold);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
