.shl-faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shl-faq-item {
    border: 2px solid #2F3142;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    transition: all .3s ease;
}

.shl-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 500;
    color: #2F3142;
}

.shl-faq-icon {
    transition: transform .3s ease;
    color: #212C54;
}

.shl-faq-item.active .shl-faq-icon {
    transform: rotate(180deg);
    color: #6DC5D4;
}

.shl-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.22,.61,.36,1);
}

.shl-faq-item.active .shl-faq-answer {
    grid-template-rows: 1fr;
}

.shl-faq-answer-inner {
    overflow: hidden;
    padding: 0 30px;
    font-size: 20px;
    line-height: 1.55;
    color: #252834;
}

.shl-faq-item.active .shl-faq-answer-inner {
    padding: 0 30px 30px;
}

.shl-faq-answer-inner > *:first-child {
    margin-top: 0;
}

.shl-faq-answer-inner > *:last-child {
    margin-bottom: 0;
}


@media(max-width: 767px) {
    .shl-faq-question {
        font-size: 22px;
        padding: 22px;
    }

    .shl-faq-answer-inner {
        padding: 0 22px 22px;
        font-size: 18px;
    }
}