.faq-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 32px;
    align-items: start;
    margin-bottom: 24px
}

.faq-section .item {
    padding: 15px;
    background-color: var(--color-3, #4b89b9);
}

.faq-section .item .question {
    position: relative;
    font-size: 17px;
    font-weight: 600;
    padding-right: 50px;
    cursor: pointer;
    user-select: none
}

.faq-section .item .question .toggler {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 13px;
    height: 13px;
    display: flex;
    color: inherit;
    user-select: none
}

.faq-section .item .answer {
    display: none;
    margin-top: 15px;
    padding-right: 50px
}

.faq-section .item.show .answer {
    display: block
}

.faq-section .item.show .toggler {
    transform: rotate(180deg)
}

@media (max-width: 991px) {
    .faq-section {
        grid-template-columns:none;
        grid-gap: 10px;
        margin-bottom: 16px
    }
}