.uc-d-none {
    display: none;
}
/* Стили для img.uc-st-img (картинка справа) */
img.uc-st-img {
    float: right;
    border-radius: 8px;
    width: 450px;
    height: 280px;
    margin: 40px 0 40px 40px;
}

img.uc-st-img.w-auto {
    width: auto;
    max-width: 100%;
}

img.uc-st-img.mt-0 {
    margin-top: 0;
}

/* Стили для img.uc-st-img-left (картинка слева) */
img.uc-st-img-left {
    float: left;
    border-radius: 8px;
    width: 430px;
    height: 280px;
    margin: 40px 40px 40px 0;
}

img.uc-st-img-left.w-auto {
    width: auto;
    max-width: 100%;
}

img.uc-st-img-left.mt-0 {
    margin-top: 0;
}

/* Адаптивные стили при ширине экрана меньше 960px */
@media screen and (max-width: 960px) {
    img.uc-st-img,
    img.uc-st-img-left {
        float: none;
        width: 100%;
        margin: 0 0 25px 0;
    }
}

.uc-text-b {
    color: #516079;
    font-size: 16px;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    font-weight: 400; 
    counter-reset: section-counter; /* Инициализация счетчика */
}

.uc-text-b p + * {
    margin-top: 20px;
}

.uc-text-b h2 {
    font-size: 42px;
    font-family: 'Prosto One', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin: 36px 0 20px;
    color: #11294F;
}

.uc-text-b h3 {
    font-size: 30px;
    font-family: 'Prosto One', Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    margin: 28px 0 10px;
    color: #11294F;
}

.uc-text-b ol {
    counter-reset: section-counter; /* Сброс счетчика */
    padding-left: 0 !important;
    margin-left: 0;
    list-style: none; /* Убираем стандартные маркеры */
}

.uc-text-b ol > li {
    counter-increment: section-counter; /* Увеличение счетчика */
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px; /* Добавляем отступ для текста */
}

.uc-text-b ol > li::before {
    content: counter(section-counter);
    font-weight: bold;
    color: white;
    display: inline-block;
    text-align: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #37B95F;
    line-height: 28px;
    position: absolute;
    top: 0;
    left: 0;
}

ul {
    list-style-type: disc;
    padding-left: 40px; /* Смещаем вложенные списки вправо */
    margin: 10px 0 10px 0;
}

ul li {
    margin-bottom: 5px;
}

ul li::marker {
    color: #37B95F; /* Зеленый цвет для маркера */
}

.uc-faq ol {
    counter-reset: section-counter; /* Сброс счетчика */
    padding-left: 0 !important;
    margin-left: 0;
    list-style: none; /* Убираем стандартные маркеры */
}

.uc-faq ol > li {
    counter-increment: section-counter; /* Увеличение счетчика */
    margin-bottom: 10px;
    position: relative;
    padding-left: 60px; /* Добавляем отступ для текста */
}

.uc-faq ol > li::before {
    content: counter(section-counter);
    font-weight: bold;
    color: white;
    display: inline-block;
    text-align: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #37B95F;
    line-height: 28px;
    position: absolute;
    text-indent: 0px;    
    top: 0;
    left: 0;
}
@media (max-width: 960px) {
    .uc-text-b .t-col {
        max-width: 375px;
        margin: 0 auto;
    }

    .uc-text-b h2 {
        font-size: 26px;
    }
    .uc-text-b h3 {
        font-size: 22px;
    }
}