.mbm-geo-faq {
    --mbm-geo-faq-bg: #fff;
    --mbm-geo-faq-border: rgba(75, 80, 80, 0.11);
    --mbm-geo-faq-title: #4b5050;
    --mbm-geo-faq-text: #5f6768;
    --mbm-geo-faq-accent: #e029cc;
    background:
        linear-gradient(135deg, rgba(224, 41, 204, 0.055), rgba(17, 145, 238, 0.045)),
        var(--mbm-geo-faq-bg);
    border: 1px solid var(--mbm-geo-faq-border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(75, 80, 80, 0.07);
    margin: 34px 0;
    padding: clamp(22px, 3vw, 34px);
}

.mbm-geo-faq__title {
    color: var(--mbm-geo-faq-title);
    font-size: clamp(1.22rem, 1.65vw, 1.6rem);
    line-height: 1.2;
    margin: 0 0 10px;
}

.mbm-geo-faq__intro {
    color: var(--mbm-geo-faq-text);
    line-height: 1.55;
    margin: 0 0 18px;
}

.mbm-geo-faq__items {
    display: grid;
    gap: 10px;
}

.mbm-geo-faq__item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(75, 80, 80, 0.09);
    border-radius: 16px;
    overflow: hidden;
}

.mbm-geo-faq__question {
    align-items: center;
    color: var(--mbm-geo-faq-title);
    cursor: pointer;
    display: flex;
    font-weight: 750;
    gap: 12px;
    justify-content: space-between;
    line-height: 1.35;
    list-style: none;
    padding: 16px 18px;
}

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

.mbm-geo-faq__question::after {
    align-items: center;
    background: rgba(224, 41, 204, 0.09);
    border-radius: 999px;
    color: var(--mbm-geo-faq-accent);
    content: "+";
    display: inline-flex;
    flex: 0 0 26px;
    font-size: 1.1rem;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    line-height: 1;
    transition: transform 0.18s ease, background-color 0.18s ease;
    width: 26px;
}

.mbm-geo-faq__item[open] .mbm-geo-faq__question::after {
    background: rgba(17, 145, 238, 0.11);
    color: #1191ee;
    content: "–";
    transform: rotate(180deg);
}

.mbm-geo-faq__answer {
    color: var(--mbm-geo-faq-text);
    line-height: 1.58;
    padding: 0 18px 17px;
}

.mbm-geo-faq__answer p {
    margin: 0;
}

.mbm-geo-faq--empty {
    color: #7a8080;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .mbm-geo-faq {
        border-radius: 18px;
        margin: 26px 0;
    }

    .mbm-geo-faq__question {
        align-items: flex-start;
        padding: 15px 16px;
    }
}
