/* --- СТИЛИ, ПРЕДОСТАВЛЕННЫЕ ПОЛЬЗОВАТЕЛЕМ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Wix Madefor Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background-color: #f8f9fa; /* Сделаем фон чуть темнее для контраста с белой карточкой */
    color: #212529;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-title {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 20px;
}

/* --- ОБЩИЕ СТИЛИ ДЛЯ СТРАНИЦ ПОЛИТИКИ И СОГЛАСИЯ --- */

.text-page-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.text-page-wrapper {
    max-width: 900px; /* Более узкий контейнер для удобства чтения */
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(97, 108, 129, 0.08);
    border: 1px solid #f0f2f5;
}

.text-page-wrapper .main-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    color: #212529;
    margin-bottom: 40px;
    line-height: 1.2;
}

.text-page-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0475D2;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.text-page-wrapper p,
.text-page-wrapper li {
    font-size: 16px;
    line-height: 1.7;
    color: #495057; /* Немного светлее для лучшего контраста с заголовками */
    margin-bottom: 15px;
}

.text-page-wrapper ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 15px;
}

.text-page-wrapper li::before {
    content: '•';
    color: #0475D2; /* Цвет маркера в стиле сайта */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em;
    font-size: 1.2em;
    line-height: 1;
    position: relative;
    top: 2px;
}

.text-page-wrapper a {
    color: #0475D2;
    text-decoration: underline;
    font-weight: 500;
}

.text-page-wrapper a:hover {
    text-decoration: none;
}

.text-page-wrapper strong {
    color: #212529;
    font-weight: 600;
}

@media (max-width: 768px) {
    .text-page-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .text-page-wrapper {
        padding: 30px 25px;
    }
    .text-page-wrapper .main-title {
        font-size: 28px;
    }
    .text-page-wrapper h2 {
        font-size: 20px;
    }
    .text-page-wrapper p,
    .text-page-wrapper li {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .text-page-wrapper {
        padding: 25px 15px;
    }
}