/* Главный контейнер страницы */
.text-page.section.container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
}

/* Заголовки */
.text-page h1 {
    color: #222;
    text-align: center;
}

.text-page h2 {
    margin-top: 40px;
    color: #222;
    font-size: 30px !important;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.text-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.text-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Абзацы */
.text-page p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Списки */
.text-page ul,
.text-page ol {
    margin: 15px 0 25px 20px;
    padding: 0;
}

.text-page ul li,
.text-page ol li {
    margin-bottom: 10px;
}

/* Кнопка регистрации */
.text-page .btn {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
}

/* Карточки или изображения (если будут добавляться) */
.text-page img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 6px;
}

/* Подчеркивание важных пунктов */
.text-page strong {
    font-weight: 600;
}

/* Отступы между секциями */
.text-page h2 + p,
.text-page h2 + ul,
.text-page h2 + ol {
    margin-top: 10px;
}