 body, html {
            background: #f5f5f5; /* Светло‑серый фон */
            text-align: left;
            color: #0b2f37;
            margin: 0;
            padding: 0;
            font: 14px Tahoma, Arial, "Times New Roman", "Trebuchet MS", Impact, sans-serif;
            width: 100%;
            height: 100%;
        }

         body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        body a {
            text-decoration: none;
        }

        .tex-rab {
            width: 640px;
            margin: 0 auto; /* Отступы сверху и снизу, центрирование по горизонтали */
            text-align: center;
            background: #ffffff; /* Белый фон контейнера */
            border-radius: 15px; /* Закруглённые углы */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Тень */
            padding: 30px; /* Отступы внутри контейнера */
            position: relative;
            overflow: hidden;
        }

        .tex-rab .img {
            background: url('img/tex-rab.png') no-repeat center top;
            background-size: contain;
            height: 300px; /* Уменьшенная высота для лучшей адаптации */
            width: 100%;
            margin: 0 auto 40px auto;
        }

        .tex-rab .title {
            font-size: 22px;
            color: #fff;
            text-shadow: 1px 2px 2px #393939;
            padding: 15px 0;
            background: #7C43CC; /* Серый фон заголовка */
            margin-bottom: 30px;
            border-radius: 10px; /* Закругление углов заголовка */
        }

        .tex-rab .text {
            font-size: 18px;
            line-height: 1.6; /* Улучшенная читаемость текста */
            color: #333; /* Более тёмный оттенок для текста */
        }

        .tex-rab .text p {
            margin: 15px 0; /* Отступы между абзацами */
        }