.faq-section {
    padding: var(--spacing-xl) 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-headline {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: #424955FF;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #fafffe;
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    /* Trust bar border color */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-black);
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-toggle-icon {
    font-size: 1.25rem;
    color: var(--color-black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--color-gray-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    /* max-height is set via JS for smooth animation */
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .faq-section {
        padding: var(--spacing-lg) 1rem;
    }
}