/* Общий контейнер */
.stx-page--oplata {
    background: transparent;
    padding: 0;

    color: #3B3C3B;
    line-height: 1.6;
}

.stx-container {
    max-width: 1000px;

    padding: 0;
}




.stx-subtitle {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #3171C6;
}

/* Списки */
.stx-list {
    list-style: none;
    padding-left: 0;

}

.stx-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.stx-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #3B3C3B;
    font-weight: 600;
}

.stx-steps {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}


.stx-steps>li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    counter-increment: step;
}

.stx-steps>li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #3B3C3B;
}

.stx-steps ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.stx-steps ul li {
    position: relative;
    padding-left: 28px;
    margin: 6px 0;
    counter-increment: none;
}

.stx-steps ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #3B3C3B;
}

/* Секции */
.stx-section {
    margin-bottom: 32px;
}



.stx-text-dash {
    position: relative;
    padding-left: 22px;

    margin: 8px 0;
}

.stx-text-dash::before {
    content: "—";

    position: absolute;
    left: 0;
    color: #3B3C3B;
    font-weight: bold;
}

/* ---------------- АДАПТИВ ---------------- */
@media (max-width: 767px) {
    .stx-page--oplata {
        padding: 16px 0;
    }

    .stx-title {
        font-size: 22px;
        margin-bottom: 16px;
        text-align: left;
    }

    .stx-subtitle {
        font-size: 18px;
        margin: 16px 0 8px;
    }

    .stx-container {
        padding-left: 0;
        padding-right: 10px;
    }


    .stx-list,
    .stx-steps {
        padding-left: 16px;
        font-size: 15px;
    }

    .wh-section__title {
        font-size: 28px;
        text-align: left !important;
        margin-bottom: 0 !important;
    }
}