/* Стили для статьи */
.personal-data-consent-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 {
    margin-bottom: 30px;
}
.content-section:last-child {
    margin-bottom: 0;
}

.content-section p {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul {
    font-size: 1em;
    color: #333;
    padding-left: 25px;
    margin-top: 0;
    margin-bottom: 15px;
}
.content-section ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    padding-left: 10px; /* Небольшой отступ для элементов списка с маркером-тире */
    position: relative;
}
.content-section ul li::before { /* Маркер-тире для списков */
    content: "–";
    position: absolute;
    left: -5px; /* Смещаем тире немного влево от стандартного положения */
    top: 0;
}


.content-section a {
    color: var(--primary-color); /* Стандартный синий для ссылок */
    text-decoration: underline;
    transition: color 0.3s ease;
}
.content-section a:hover {
    color: var(--primary-color);
}

/* Стили для сносок */
.footnote-ref {
    font-size: 0.8em;
    vertical-align: super; /* Поднимаем ссылку на сноску */
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 2px;
}
.footnote-ref:hover {
    text-decoration: underline;
}

.footnotes-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0; /* Линия над блоком сносок */
}
.footnote-item {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}
.footnote-item strong {
    color: #333;
}

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

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