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

        body {
            font-family: Helvetica, Arial, Geneva, Verdana, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #003366;
            background: #336799;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        header {
            background: #ffffff;
            padding: 20px 30px;
            border-bottom: 3px solid #fed350;
        }

        .logo-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .logo-text {
            font-size: 1.8em;
            font-weight: bold;
            color: #025488;
            text-decoration: none;
        }

        .logo-tagline {
            font-size: 0.9em;
            color: #bebebe;
            margin-top: 5px;
        }

        nav {
            background-color: #fed350;
            padding: 12px 30px;
            margin: 0;
        }

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

        nav li {
            display: inline-block;
        }

        nav a {
            text-decoration: none;
            color: #003366;
            padding: 8px 15px;
            display: block;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        nav a:hover {
            background: #003366;
            color: #ffffff;
        }

        main {
            padding: 30px;
        }

        h1 {
            font-size: 2em;
            color: #003366;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #fed350;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 1.6em;
            color: #003366;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.3em;
            color: #003366;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article p {
            margin-bottom: 15px;
            line-height: 1.7;
            color: #003366;
        }

        article img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 15px 0;
        }

        .transition-section {
            background-color: #fff2d0;
            padding: 25px;
            margin: 30px 0;
            border-radius: 5px;
            border: 1px solid #fed350;
        }

        .transition-section p {
            margin-bottom: 15px;
            color: #003366;
        }

        {% if links %}
        .links-section {
            background-color: #eaf2fd;
            padding: 30px;
            margin: 30px 0;
            border-radius: 5px;
            border: 1px solid #003366;
        }

        .links-section h2 {
            font-size: 1.8em;
            color: #003366;
            margin-bottom: 25px;
            text-align: center;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #003366;
            margin-top: 25px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #003366;
        }

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

        .links-section li {
            background: #ffffff;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: #fed350;
        }

        .links-section a {
            display: block;
            padding: 10px 15px;
            color: #003366;
            text-decoration: none;
            border-radius: 5px;
        }

        .links-section a:hover {
            color: #003366;
        }
        {% endif %}

        footer {
            background-color: #fed350;
            padding: 20px 30px;
            margin-top: 40px;
        }

        footer ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 10px;
        }

        footer li {
            display: inline-block;
        }

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

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

        footer p {
            text-align: center;
            color: #003366;
            font-size: 0.9em;
            margin-top: 10px;
        }

        @media only screen and (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .logo-text {
                font-size: 1.4em;
            }

            nav {
                padding: 10px 20px;
            }

            nav ul {
                flex-direction: column;
                gap: 5px;
            }

            main {
                padding: 20px;
            }

            h1 {
                font-size: 1.6em;
            }

            article h2 {
                font-size: 1.4em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

            .links-section ul {
                grid-template-columns: 1fr;
            }
            {% endif %}

            footer {
                padding: 15px 20px;
            }

            footer ul {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        @media only screen and (max-width: 480px) {
            .logo-text {
                font-size: 1.2em;
            }

            h1 {
                font-size: 1.4em;
            }

            article h2 {
                font-size: 1.3em;
            }

            main {
                padding: 15px;
            }

            .transition-section {
                padding: 15px;
            }

            {% if links %}
            .links-section {
                padding: 15px;
            }
            {% endif %}
        }
    