.faq-block {
        margin: 0px 30px 20px 20px;
    width: 100%;
}

.faq-block__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question__text {
    display: block;
}

.faq-question__icon {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.faq-question__icon::before,
.faq-question__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #222;
    transform: translate(-50%, -50%);
    transition: 0.25s ease;
}

.faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer__content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.faq-answer__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 15px 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-answer__content {
        font-size: 15px;
    }
}