.faqs {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin-top: 48px;
}

.faq {
    padding: 32px;
    gap: 24px;
    border-radius: 24px;
    background: var(--bg-level-2, #F6F6F9);
    transition: all 1s ease-in-out;

}

.faq__question {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.faq__button {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: var(--button-medium, 16px);
    background: var(--controls-bg-neutralInverted-default, #FFF);
    flex: 0 0 44px;
}

.faq__button img {
    rotate: 135deg;
    transition: all 0.7s ease-in-out;
}

.faq__checkbox {
    display: none;
}

.faq__answer {
    max-height: 0px;
    margin-top: 16px;

    overflow: hidden;
    font-family: "Inter Variable";
    font-size: 20px;
    font-weight: var(--Font-Font-Weight-regular, 450);
    line-height: 26px;
    transition: all 0.7s ease-in-out;

}

.faq__answer ul {
    padding-left: 23px;
}


.faq__checkbox:checked~.faq__answer {
    max-height: 1000px;
}

.faq__checkbox:checked~.faq__question .faq__button img {
    rotate: 0deg;
}

.faqs .title-34 {
    font-family: "Inter Variable";
    font-size: clamp(1.5rem, 1.294rem + 0.78vw, 2rem);
    font-weight: 500;
    line-height: clamp(1.75rem, 1.544rem + 0.78vw, 2.25rem);
}

@media (max-width:600px) {
    .faq {
        padding: 24px 20px;
    }
}