.faq_block-wrapper {
    padding: 20px;
    border-radius: 30px;
    background-color: var(--second-company);
    color: #fff;
}

.faq__list {
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}

.faq__item {
    margin-bottom: 16px;
    position: relative;
}

.faq__item:last-child {
    margin: 0;
}

.faq__item--boxed {
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}

.faq__question {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.2;
    border-radius: 30px;
    background: var(--body-heading);
}

.faq__arrow {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    transition: all 0.3s ease;
    transform: rotate(180deg);
    fill: #fff;
}

.faq__item.visible .faq__arrow {
    transform: rotate(0deg);
}

.faq__content {
    position: relative;
    display: none;
    padding: 30px 50px 15px;
}

.faq__answer {
    position: relative;
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    font-family: inherit;
    color: #1A1A1A;
    text-align: left;
}

.faq__answer ol li,
.faq__answer ul li {
    font-size: 14px;
    line-height: 19px;
    font-weight: 500 !important;
    gap: 10px !important;
    grid-template-columns: 10px 1fr !important;
    align-items: baseline !important;
}

@media (max-width: 768px) {
    .faq__question {
        font-weight: 500;
        font-size: 14px;
    }
}
