.faq-block {
    max-width: 820px;
    margin: 70px auto 0;
}

.faq-title {
    font-size: 22px;
    line-height: 28px;
    color: #0038B8;
    margin: 0 0 24px;
    font-weight: 600;
}

.faq-item {
    border-top: 1px solid #6997F4;
}

.faq-item:first-child {
    border-top: 3px solid #6997F4;
}

.faq-item:last-child {
    border-bottom: 3px solid #6997F4;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    color: #0038B8;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-question-close-text {
    font-weight: 400;
    font-size: 16px;
}

.faq-question-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faq-question-open,
.faq-question-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.faq-question-close {
    display: none;
    color: #6997F4;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
}

.faq-question-close-icon {
    display: none;
}

.faq-item.is-open .faq-question-open {
    display: none;
}

.faq-item.is-open .faq-question-close {
    display: inline-flex;
}

.faq-question-toggle svg,
.faq-question-close-icon svg {
    display: block;
}

.faq-answer {
    padding: 0 0 16px;
    font-size: 14px;
    line-height: 20px;
    color: #4D4D4D;
}

.inner-stats-container {
    background: #F2F2F2;
}

.bottom-close-faq {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 45px 0 25px;
}

.faq-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: none;
    color: #6997F4;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    cursor: pointer;
    text-transform: uppercase;
}

.faq-close-icon svg {
    display: block;
}

.faq-answer-content {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    padding: 20px 0 0;
}

.faq-answer-content strong {
    font-weight: 500;
    color: #0038B8;
}

.faq-block .faq-add {
    margin-top: 16px;
}

.faq-block .faq-remove {
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .faq-block {
        max-width: 100%;
    }
}