.electronic-certificate-page {
    padding: 40px 0;
}

.article-header {
    margin-bottom: 40px;
    text-align: left; /* Заголовок и подзаголовок слева */
}

.article-header h1 {
    font-size: 2.8em; /* Очень крупный заголовок */
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-header .subtitle {
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
}

.content-section {
    margin-bottom: 40px;
}
.content-section:last-child {
    margin-bottom: 0;
}


.content-section h2 {
    font-size: 1.8em; /* Заголовки разделов */
    font-weight: bold;
    color: #000;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-section p {
    font-size: 1em;
    color: #333; /* Основной цвет текста */
    margin-bottom: 15px;
    line-height: 1.7;
}
.content-section p:last-of-type { /* Убираем нижний отступ у последнего абзаца в блоке */
    /* margin-bottom: 0; */ /* Оставляем, если после него список */
}


.content-section ul,
.content-section ol {
    font-size: 1em;
    color: #333;
    padding-left: 25px; /* Стандартный отступ для списков */
    margin-top: 0;
    margin-bottom: 15px;
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Вложенные списки */
.content-section ol ul,
.content-section ul ul {
    margin-top: 8px;
    margin-bottom: 8px; /* Отступ для вложенного списка */
    padding-left: 20px; /* Дополнительный отступ для вложенности */
}
.content-section ol ul li,
.content-section ul ul li {
    /* Дополнительные стили для элементов вложенного списка, если нужны */
}


.content-section a {
    color: var(--primary-color); /* Стандартный синий для ссылок */
    text-decoration: underline;
    transition: color 0.3s ease;
}
.content-section a:hover {
    color: var(--primary-color); /* Темнее при наведении */
}
/* Адаптивность */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2.4em;
    }
    .content-section h2 {
        font-size: 1.6em;
    }
    .article-header .subtitle,
    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .article-header h1 {
        font-size: 2em;
    }
    .content-section h2 {
        font-size: 1.4em;
    }
    .article-header .subtitle,
    .content-section p,
    .content-section ul,
    .content-section ol {
        font-size: 0.9em;
    }
}