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

        body {
            font-family: 'Verdana', Arial, Helvetica, sans-serif;
            background-color: #000066;
            color: #333;
            line-height: 1.6;
        }

        header {
            background-color: #A2C2DF;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 5px solid #FFE846;
        }

        header h1 {
            color: #000066;
            font-size: 2.5em;
            font-weight: bold;
            margin: 0;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            min-height: 70vh;
        }

        article {
            padding: 40px 20px;
        }

        article h2,
        article h3,
        article h4 {
            color: #000066;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article h2 {
            font-size: 1.8em;
            border-bottom: 2px solid #FFE846;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.4em;
        }

        article h4 {
            font-size: 1.2em;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1em;
            color: #333;
            text-align: left;
        }

        .transition-section {
            padding: 30px 20px;
            background-color: #f5f5f5;
            border-top: 3px solid #FFE846;
            border-bottom: 3px solid #FFE846;
        }

        .transition-section p {
            max-width: 1200px;
            margin: 0 auto 15px;
            font-size: 1em;
            color: #333;
        }

        {% if links %}
        .links-section {
            padding: 40px 20px;
            background-color: #A2C2DF;
        }

        .links-section h3 {
            color: #000066;
            font-size: 1.5em;
            margin-bottom: 15px;
            margin-top: 30px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            margin-bottom: 8px;
        }

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

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

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

        footer {
            background-color: #A2C2DF;
            color: #000066;
            text-align: center;
            padding: 20px;
            border-top: 5px solid #FFE846;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }

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

            article {
                padding: 25px 15px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

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

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

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

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

        @media (max-width: 480px) {
            header {
                padding: 20px 10px;
            }

            header h1 {
                font-size: 1.5em;
            }

            article {
                padding: 20px 12px;
            }

            article h2 {
                font-size: 1.3em;
            }

            article p {
                font-size: 0.95em;
            }
        }
    