.service-faq {
    margin-bottom: 60px;
}


.service-faq__title {
    margin: 0 0 24px;
}

.service-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-faq__item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.service-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #222;
}

.service-faq__question-text {
    display: block;
}

.service-faq__icon {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.service-faq__icon::before,
.service-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #222;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq__item.is-open .service-faq__icon::after {
    opacity: 0;
}

.service-faq__answer {
    display: none;
    padding: 0 24px 20px;
}

.service-faq__item.is-open .service-faq__answer {
    display: block;
}

.service-faq__answer-inner {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.service-faq__answer-inner > *:first-child {
    margin-top: 0;
}

.service-faq__answer-inner > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .service-faq {
        margin-top: 36px;
        margin-bottom: 36px;
    }

    .service-faq__title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .service-faq__question {
        padding: 16px 18px;
        font-size: 16px;
    }

    .service-faq__answer {
        padding: 0 18px 16px;
    }

    .service-faq__answer-inner {
        font-size: 15px;
    }
}