.faq-section {
    background-color: var(--midNight-900);
    padding: 64px 0px;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.faq-container h2 {
    color: var(--midNight-0);
    font-weight: 700;
    text-align: center;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--midNight-700);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item.active {
    gap: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--midNight-0);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 20px;
    color: var(--deepSaffron-500);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
}

.faq-answer p {
    font-size: 15px;
    color: var(--midNight-100);
    line-height: 1.6;
}

/* Active State */
.faq-item.active {
    background-color: transparent;
    border-color: var(--deepSaffron-500);
}

.faq-item.active .faq-question h3 {
    color: var(--midNight-0);
}

.faq-item.active .faq-icon {
    color: var(--deepSaffron-500);
}

.faq-item.active .faq-answer p {
    color: var(--midNight-100);
}

@media (max-width: 600px) {
    .faq-item {
        padding: 16px 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}