.service-faq {
    margin: 44px 0 50px;
}

.service-faq__title {
    margin-bottom: 22px;
}

.service-faq__list {
    border-top: 1px solid #dfe2e8;
}

.service-faq__item {
    border-bottom: 1px solid #dfe2e8;
}

.service-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    color: #111b4c;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.service-faq__question::-webkit-details-marker {
    display: none;
}

.service-faq__question::marker {
    display: none;
    content: '';
}

.service-faq__question:hover {
    color: #d99b00;
}

.service-faq__question:focus-visible {
    outline: 2px solid #fdb913;
    outline-offset: 5px;
}

.service-faq__question-text {
    min-width: 0;
}

.service-faq__icon {
    position: relative;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid #fdb913;
    border-radius: 50%;
}

.service-faq__icon::before,
.service-faq__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #111b4c;
    content: '';
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.service-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq__item[open] .service-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.service-faq__answer {
    max-width: 860px;
    padding: 0 62px 25px 0;
    color: #333;
    font-size: 16px;
    line-height: 1.65;
}

.service-faq__answer > :first-child {
    margin-top: 0;
}

.service-faq__answer > :last-child {
    margin-bottom: 0;
}

.service-faq__answer a {
    color: #111b4c;
    text-decoration-color: #fdb913;
}

@media (max-width: 767px) {
    .service-faq {
        margin: 34px 0 40px;
    }

    .service-faq__question {
        gap: 16px;
        padding: 18px 0;
        font-size: 18px;
    }

    .service-faq__icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .service-faq__answer {
        padding: 0 0 21px;
        line-height: 1.55;
    }
}
