        :root {
            --blue: #003366;
            --white: #ffffff;
            --gray: #f8f9fa;
        }

        h1 {
            font-size: 2.5rem;
            border-left: 6px solid var(--blue);
            padding-left: 20px;
            text-transform: uppercase;
            line-height: 1.2;
        }

        /* --- АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ --- */
        @media (max-width: 768px) {
            .page-title-container {
                padding: 110px 20px 30px;
            }

            h1 {
                font-size: 1.8rem;
                /* Уменьшаем размер шрифта */
                border-left-width: 4px;
                /* Тоньше линия */
                padding-left: 15px;
            }
        }

        .section-wrapper {
            width: 100%;
            padding: 60px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .section-wrapper:nth-child(even) {
            background-color: var(--gray);
        }

        .container {
            padding: 0 10%;
            max-width: 1100px;
            margin: 0 auto;
        }

        .sub-section {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 40px;
        }

        .sub-section h2 {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            line-height: 1.4;
        }

        ul {
            list-style: none;
        }

        li {
            margin-bottom: 1rem;
            padding-left: 25px;
            position: relative;
        }

        li::before {
            content: '→';
            color: var(--blue);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .highlight-box {
            background: var(--white);
            padding: 2rem;
            border-radius: 4px;
            margin-top: 20px;
            border: 1px solid #e0e0e0;
            border-left: 4px solid #00aaff;
        }

        @media (max-width: 768px) {
            .sub-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }