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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        header {
            background-color: #fff;
            border-bottom: 3px solid #162883;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 2em;
            font-weight: 900;
            color: #162883;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9em;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #E75112;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
            color: #162883;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        h1 {
            font-size: 3em;
            font-weight: 900;
            color: #162883;
            margin-bottom: 40px;
            line-height: 1.2;
            letter-spacing: -2px;
            text-transform: uppercase;
        }

        article {
            margin-bottom: 60px;
        }

        article h2 {
            font-size: 2em;
            font-weight: 700;
            color: #E75112;
            margin: 40px 0 20px;
            text-transform: uppercase;
        }

        article h3 {
            font-size: 1.5em;
            font-weight: 600;
            color: #333;
            margin: 30px 0 15px;
        }

        article h4 {
            font-size: 1.2em;
            font-weight: 600;
            color: #162883;
            margin: 25px 0 10px;
        }

        article p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #666;
            line-height: 1.8;
        }

        article strong {
            color: #E75112;
            font-weight: 700;
        }

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

        article li {
            margin-bottom: 10px;
            color: #666;
            font-size: 1.1em;
        }

        .transition-section {
            background-color: #f8f8f8;
            padding: 40px;
            margin: 60px 0;
            border-left: 5px solid #E75112;
        }

        .transition-section p {
            font-size: 1.15em;
            color: #444;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            background-color: #162883;
            padding: 60px 40px;
            margin-top: 60px;
            color: #fff;
        }

        .links-section h2 {
            font-size: 2.5em;
            font-weight: 900;
            color: #fff;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .links-section h3 {
            font-size: 1.5em;
            font-weight: 700;
            color: #fff;
            margin: 30px 0 15px;
            text-transform: uppercase;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05em;
            display: inline-block;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }

        .links-section a:hover {
            color: #E75112;
            border-bottom-color: #E75112;
        }

        .links-section a::before {
            content: "→ ";
            color: #E75112;
            font-weight: bold;
        }
        {% endif %}

        footer {
            background-color: #f0f0f0;
            padding: 40px 20px;
            margin-top: 80px;
            border-top: 3px solid #162883;
        }

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

        .footer-container p {
            color: #666;
            font-size: 0.95em;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            h1 {
                font-size: 2em;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article p {
                font-size: 1em;
            }

            main {
                padding: 40px 15px;
            }

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

            {% if links %}
            .links-section {
                padding: 40px 20px;
            }

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

            .links-section h2 {
                font-size: 1.8em;
            }

            .links-section h3 {
                font-size: 1.3em;
            }
            {% endif %}
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6em;
                letter-spacing: -1px;
            }

            .header-container {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.5em;
            }
        }
    