.section-faq {
    padding: 60px 0;
}

.faq-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-text-secondary);
}

@media (max-width: 1023px) {
    .section-faq {
        padding: 20px 0;
    }

    .faq-title {
        font-size: 30px;
    }
}
