
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
            font-weight: normal;
            font-size: 14px;
            color: #111;
            line-height: 1.6;
            background: #fff;
        }

        a {
            color: #073059;
            text-decoration: underline;
            transition: all 0.2s ease;
        }

        a:hover {
            opacity: 0.8;
        }

        header {
            background: #093562;
            color: #fff;
            padding: 20px 0;
            margin-bottom: 30px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header h1 {
            font-size: 24px;
            font-weight: normal;
            line-height: 1.3;
            color: #fff;
        }

        main {
            min-height: 60vh;
        }

        article {
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        article h1 {
            font-size: 32px;
            color: #011f3c;
            border-bottom: 2px solid #8398ad;
            margin-bottom: 25px;
            padding-bottom: 10px;
            line-height: 1.3;
            font-weight: normal;
        }

        article h2 {
            font-size: 24px;
            color: #011f3c;
            margin: 30px 0 15px;
            line-height: 1.4;
            font-weight: normal;
        }

        article h3 {
            font-size: 20px;
            color: #011f3c;
            margin: 25px 0 12px;
            line-height: 1.4;
            font-weight: normal;
        }

        article h4 {
            font-size: 18px;
            color: #011f3c;
            margin: 20px 0 10px;
            line-height: 1.4;
            font-weight: normal;
        }

        article p {
            margin-bottom: 18px;
            font-size: 14px;
            line-height: 1.7;
        }

        article ul, article ol {
            margin: 15px 0 15px 30px;
        }

        article li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .transition-section {
            background: #d8dfe7;
            padding: 30px 20px;
            margin: 40px 0;
        }

        .transition-section .container {
            max-width: 900px;
        }

        .transition-section p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #022f56;
        }

        .links-section {
            background: #f5f7f9;
            padding: 40px 20px;
            margin-top: 40px;
            border-top: 3px solid #093562;
        }

        .links-section .container {
            max-width: 1200px;
        }

        .links-section h2 {
            font-size: 28px;
            color: #011f3c;
            margin-bottom: 30px;
            text-align: center;
            font-weight: normal;
        }

        .links-section h3 {
            font-size: 20px;
            color: #011f3c;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #8398ad;
            font-weight: normal;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 30px;
            margin-bottom: 30px;
        }

        .links-section li {
            padding: 8px 0;
            border-bottom: 1px dotted #ccc;
        }

        .links-section li a {
            color: #073059;
            text-decoration: underline;
            font-size: 14px;
            display: block;
            line-height: 1.5;
        }

        .links-section li a:hover {
            color: #900;
        }

        footer {
            background: #073059;
            color: #96c3ef;
            padding: 30px 20px;
            margin-top: 60px;
        }

        footer .container {
            max-width: 1200px;
            text-align: center;
        }

        footer p {
            font-size: 13px;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 20px;
            }

            article h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 5px;
            }

            .links-section h2 {
                font-size: 24px;
            }

            .links-section h3 {
                font-size: 18px;
            }

            .transition-section {
                padding: 20px 15px;
            }

            .links-section {
                padding: 30px 15px;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 13px;
            }

            header h1 {
                font-size: 18px;
            }

            article h1 {
                font-size: 22px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 17px;
            }

            .links-section h2 {
                font-size: 20px;
            }
        }
    