
/* Стили для статьи */
.privacy-policy-page { /* Новый класс для этой страницы */
    padding: 40px 0;
}

.article-header {
    margin-bottom: 30px;
    text-align: center;
}
.article-header h1 {
    font-size: 2.8em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
}

.content-section.policy-section { /* Используем этот класс для основных блоков текста */
    margin-bottom: 30px;
}
.content-section.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 { /* Заголовки разделов (1. Общие положения, 2. Обработка...) */
    font-size: 1.6em;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 10px; /* Небольшой отступ сверху, если есть предыдущий блок */
    /* border-top: 1px solid #eee; /* Легкий разделитель между секциями */
}
.policy-section h2:first-child { /* Убираем отступ и рамку у самого первого h2 */
    padding-top: 0;
    /* border-top: none; */
}


.policy-section h3.sub-heading { /* Для подзаголовков типа "Сбор, запись, использование, передача" */
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
    margin-top: 25px;
    margin-bottom: 15px;
}


.policy-section p {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}
.policy-section p strong { /* Для выделения нумерации пунктов, как "1.1." */
    font-weight: bold;
    color: #000; /* Можно сделать номера пунктов черными */
}


.policy-section ul {
    font-size: 1em;
    color: #333;
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 15px;
}
.policy-section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    /* Маркеры будут стандартными точками */
}


.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.policy-section a:hover {
    color: var(--primary-color);
}


/* Адаптивность */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.4em;
    }
    .policy-section h2 {
        font-size: 1.4em;
    }
    .policy-section p,
    .policy-section ul {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 2em;
    }
    .policy-section h2 {
        font-size: 1.3em;
    }
    .policy-section p,
    .policy-section ul {
        font-size: 0.9em;
    }
}
