/* FAQ Section Styles */
.faq-section {
    padding: clamp(4rem, 8vw, 4rem) clamp(1.5rem, 5vw, 2rem);
    ;
    background: linear-gradient(to bottom, var(--color-background), #000000);
    color: var(--color-text);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-family: var(--font-heading, 'Figtree', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-card, 8px);
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-body, sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* .faq-question:hover { color: ...; } removed */

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent, #1c52ad);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    /* Arbitrary large height */
}

.faq-answer p {
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}