/* Хэдер */
.header.container {
    min-height: unset;
    height: 124px;
    display: flex;
    overflow: unset;
}

/* Основной контейнер */
.content {
    background-image: none;
    min-height: auto; /* убираем растяжку на весь экран */
    display: flex;
    flex-direction: column; /* чтобы текст шёл сверху вниз */
    justify-content: flex-start;
    padding: 0;
}

/* Заголовок страницы */
h1.rules-h1 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Основной текст */
.content-main-terms {
    color: #FBFBFB;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    padding: 0px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Абзацы */
.content-main-terms p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    opacity: 0.84;
    margin: 0;
}

/* Списки */
.content-main-terms ul {
    padding-left: 20px;
    list-style-type: disc;
}

.content-main-terms li {
    margin-bottom: 10px;
}

/* Эмфаза */
.content-main-terms em {
    font-style: italic;
    color: #858585;
}

/* Контейнер для топ-блока текста (аналог top-info-block-rules) */
.top-info-block-terms {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto; /* центрируем */
}

/* Адаптив */
@media (max-width: 800px) {
    .content-main-terms {
        padding: 0 16px;
        font-size: 15px;
        line-height: 24px;
    }
    h1.rules-h1 {
        font-size: 22px;
    }
}
