.faq {
    padding: 40px 0;
}
.faq__item {
    border-bottom: 1px solid #ddd;
}
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border: 0;
    background: none;
    font-size: 20px;
    font-weight: 600;
    color: #53585a !important;
    text-align: left;
    cursor: pointer;
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}
.faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}
.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}
.faq__item.is-open .faq__answer {
    opacity: 1;
    transform: translateY(0);
}
.faq__answer > *:last-child {
    margin-bottom: 20px;
}


@media (max-width: 767px) {
    .faq__title {
        margin: 15px 0 !important;
    }
    .faq__question {
        padding: 16px 0;
        font-size: 16px;
    }
}