.faq__container {
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq__title {
    font-size: var(--text-size-medium);
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 110%;
    letter-spacing: -4%;
}

.faq__arrow {
    width: 56px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-active);
    border-radius: 40px;
    min-width: 56px;
}

.faq__arrow img {
    transition: transform 0.3s ease-in-out;
}

.faq__item--open .faq__arrow img {
    transform: rotate(90deg);
}

.faq__answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq__item--open .faq__answer-wrapper {
    max-height: 500px;
}

.faq__answer {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 110%;
    letter-spacing: -4%;
    margin: 10px 0 20px;
}

.faq__answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq__title {
        font-size: 20px;
        min-width: 270px;
    }

    .faq__answer p {
        font-size: 16px;
        line-height: 120%;
    }
}