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

        html {
            font-size: 100%;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background: #f5f6f6;
        }

        .header-wrapper {
            background: linear-gradient(to bottom, #004067 0%, #003351 100%);
            padding: 20px 0;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
        }

        nav {
            background: linear-gradient(to bottom, #004067 0%, #003351 100%);
            border-top: 1px solid #3b6882;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav ul li {
            border-right: 1px solid #04324c;
            border-left: 1px solid #3b6882;
        }

        nav ul li:first-child {
            border-left: none;
        }

        nav ul li:last-child {
            border-right: none;
        }

        nav ul li a {
            display: block;
            padding: 12px 18px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #35A4E4;
        }

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

        .content-wrapper {
            background: #fff;
            border-radius: 4px;
            box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
            padding: 25px;
            margin-bottom: 30px;
        }

        h1 {
            background: #35A4E4;
            color: white;
            font-size: 26px;
            padding: 10px 0 10px 24px;
            margin: -25px -25px 25px -25px;
            border-radius: 4px 4px 0 0;
            position: relative;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 0;
            border-left: 14px solid transparent;
            border-top: 7px solid #2d89be;
        }

        article h2 {
            color: #0081c5;
            font-size: 22px;
            margin: 25px 0 15px 0;
            line-height: 1.4;
        }

        article h3 {
            color: #0081c5;
            font-size: 19px;
            margin: 20px 0 12px 0;
            line-height: 1.4;
        }

        article p {
            color: #696969;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 15px;
            text-align: left;
        }

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

        article ul li,
        article ol li {
            color: #696969;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        article ul li {
            list-style: square;
        }

        article ol li {
            list-style: decimal;
        }

        article a {
            color: #0081c5;
            text-decoration: underline;
        }

        article a:hover {
            color: #005998;
        }

        article strong {
            font-weight: bold;
        }

        .transition-section {
            background: #fff;
            border-radius: 4px;
            box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
            padding: 25px;
            margin-bottom: 30px;
        }

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

        {% if links %}
        .links-section {
            background: #fff;
            border-radius: 4px;
            box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
            padding: 25px;
            margin-bottom: 30px;
        }

        .links-section h2 {
            background: #35A4E4;
            color: white;
            font-size: 22px;
            padding: 10px 0 10px 24px;
            margin: -25px -25px 25px -25px;
            border-radius: 4px 4px 0 0;
            position: relative;
        }

        .links-section h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 0;
            border-left: 14px solid transparent;
            border-top: 7px solid #2d89be;
        }

        .links-section h3 {
            color: #444;
            font-size: 18px;
            margin: 20px 0 12px 0;
            font-weight: bold;
        }

        .links-section ul {
            list-style: none;
            margin: 0 0 25px 0;
            padding: 0;
            column-count: 2;
            column-gap: 30px;
        }

        .links-section ul li {
            margin-bottom: 8px;
            break-inside: avoid;
        }

        .links-section ul li a {
            color: #0081c5;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.6;
            display: block;
        }

        .links-section ul li a:hover {
            color: #FC0;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background: #003352;
            padding: 20px;
            text-align: center;
        }

        footer p {
            color: #fff;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        footer a {
            color: #F8B203;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        @media only screen and (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                flex-direction: column;
                padding: 0;
            }

            nav ul li {
                border: none;
                border-bottom: 1px solid #3b6882;
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            h1 {
                font-size: 22px;
                padding: 10px 15px;
                margin: -25px -25px 20px -25px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

            {% if links %}
            .links-section ul {
                column-count: 1;
            }

            .links-section h2 {
                font-size: 20px;
                padding: 10px 15px;
                margin: -25px -25px 20px -25px;
            }
            {% endif %}
        }

        @media only screen and (max-width: 480px) {
            .content-wrapper,
            .transition-section,
            .links-section {
                padding: 20px 15px;
            }

            h1 {
                font-size: 20px;
                padding: 8px 12px;
                margin: -20px -15px 15px -15px;
            }

            article h2 {
                font-size: 18px;
            }

            article h3 {
                font-size: 16px;
            }

            article p,
            article ul li,
            article ol li {
                font-size: 14px;
            }

            {% if links %}
            .links-section h2 {
                font-size: 18px;
                padding: 8px 12px;
                margin: -20px -15px 15px -15px;
            }

            .links-section h3 {
                font-size: 16px;
            }
            {% endif %}
        }
    