  /* Основной стиль статьи */
        .article {
            max-width: 900px;
            margin: 0 auto;
            padding: 30px;
            font-family: 'Roboto', Arial, sans-serif;
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
        }

        /* Заголовок статьи */
        .article__title {
            font-size: 2.8em;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.2;
        }

        /* Секции статьи */
        .article__section {
            margin-bottom: 35px;
        }

        /* Заголовки секций */
        .article__section-title {
            font-size: 2em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
            padding-left: 10px;
        }

        /* Параграфы */
        .article__paragraph {
            font-size: 1.15em;
            line-height: 1.8;
            color: #34495e;
            margin-bottom: 20px;
        }

        /* Таблица */
        .article__table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 25px;
            border-radius: 8px;
            overflow: hidden;
        }

        /* Заголовки таблицы */
        .article__table-header {
            background-color: #3498db;
            color: #ffffff;
            padding: 12px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
        }

        /* Ячейки таблицы */
        .article__table-cell {
            padding: 12px;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1em;
            color: #34495e;
        }

        /* Чередование строк таблицы */
        .article__table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        /* Ссылки */
        .article__link {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .article__link:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* Стили для списка */
        .article__list {
            list-style-type: disc;
            padding-left: 30px;
            margin-bottom: 20px;
        }

        .article__list-item {
            font-size: 1.15em;
            line-height: 1.8;
            color: #34495e;
            margin-bottom: 10px;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .article {
                padding: 20px;
            }

            .article__title {
                font-size: 2.2em;
            }

            .article__section-title {
                font-size: 1.6em;
            }

            .article__paragraph {
                font-size: 1em;
            }

            .article__table-header,
            .article__table-cell {
                padding: 8px;
                font-size: 0.95em;
            }
        }

        /* Подключение шрифта Roboto */
        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');