.faq {
    width: 100%;
    padding: 24px 120px;
}

.faq-inner {
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.faq-inner h2 {
    font-size: 32px;
    font-weight: 600;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border: 1px solid #fff;
    margin-top: -1px;
}

.faq-item:first-child {
    border-radius: 8px 8px 0 0;
}

.faq-item:last-child {
    border-radius: 0 0 8px 8px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
    text-align: left;
}

.faq-question span {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    flex: 1;
}

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

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

.faq-answer {
    display: none;
    padding: 24px 16px;
    border-top: 1px solid #fff;
    background: rgba(15, 30, 21, 0.1);
}

.faq-item--open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 768px) {
    .faq {
        padding: 24px 20px;
    }

    .faq-inner h2 {
        font-size: 24px;
    }

    .faq-question span {
        font-size: 17px;
        line-height: 22px;
    }

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