.faq-item {
    width: 100%;
    border-radius: 10px;
    padding: 10px 30px;
    background: var(--text-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item:hover {
    background: var(--secondary-grey);
}

.faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 16px;
    opacity: 1;
}

.faq-item.active .faq-item {
    margin-bottom: 15px;
}

.faq-question .icon-toggle {
    width: 21px;
    height: 21px;
    transition: transform 0.3s ease;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    color: var(--text-dark);
    margin: 0 !important;
}

.faq-answer-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--accent-grey);
    margin: 0 !important;
}

.faq-title-text {
    font-size: 35px;
    font-weight: 700;
    line-height: 114%;
    color: var(--text-dark);
    margin: 0 !important;
}

.faq-item.active .icon-toggle {
    transform: rotate(180deg);
}

.faq-wrapper-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 55px
}

@media (min-width:800px) {
    .faq-wrapper-block {
        gap: 20px
    }

    .faq-question .icon-toggle {
        width: 48px;
        height: 48px;
        transition: transform 0.3s ease;
    }

    .faq-question-text {
        font-size: 24px;
        font-weight: 400;
        line-height: 140%;
        color: var(--text-dark);
        margin: 0 !important;
    }

    .faq-answer-text {
        font-size: 20px;
        font-weight: 400;
        line-height: 158%;
        color: var(--accent-grey);
        margin: 0 !important;
    }

    .faq-title-text {
        font-size: 48px;
        font-weight: 700;
        line-height: 60px;
        color: var(--text-dark);
    }
}