.faq-list {
    margin-top: -24px;
}

.faq-item {
    cursor: pointer;
    user-select: none;
    padding-bottom: 24px;
    padding-top: 24px;
    border-bottom: 1px solid rgba(232, 234, 239, 1);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-block {
    margin-bottom: 64px;
}

.faq-item-question {
    color: rgba(9, 14, 24, 1);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.5px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item-answer {
    max-height: 0px;
    overflow: hidden;
    transition: 0.25s;
    width: 785px;
    max-width: 100%;
    color: rgba(9, 14, 24, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -2%;
    text-align: left;
}

.faq-item.active .faq-item-answer {
    max-height: 1000px;
    padding-top: 24px;
}

.faq-item-question-status {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 32px;
    margin-left: 10px;
}

.faq-item-question-status:before,
.faq-item-question-status:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    min-width: 12px;
    transition: 0.25s;
    background: rgba(232, 234, 239, 1);
}

.faq-item-question-status:before {
    background: rgba(9, 14, 24, 1);
}

.faq-item.active .faq-item-question-status:before {
    background: rgba(232, 234, 239, 1);
}

.faq-item.active .faq-item-question-status:after {
    background: rgba(9, 14, 24, 1);
}

@media screen and (max-width: 992px) {
    .faq-item-question {
        color: rgba(9, 14, 24, 1);
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: -0.3px;
        text-align: left;
    }

    .faq-item {
        padding: 16px 0;
    }

    .faq-list {
        margin-top: -16px;
    }

    .faq-item-answer {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: -0.3px;
        text-align: left;
        max-width: calc(100% - 56px);
    }

    .faq-item.active .faq-item-answer {
        padding-top: 16px;
    }

    .faq-item-question-status {
        gap: 6px;
        min-width: 22px;
    }

    .faq-item-question-status:before,
    .faq-item-question-status:after {
        width: 8px;
        height: 8px;
        min-width: 8px;
    }

    .faq-title {
        font-size: 28px !important;
        font-weight: 500 !important;
        line-height: 33px !important;
        letter-spacing: -0.6px !important;
        margin-bottom: 40px !important;
    }
}