
        * {
            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: #f0f3f8;
        }

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

        header {
            background: linear-gradient(135deg, #002c74 0%, #001b72 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .site-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            margin: 0;
        }

        nav {
            background-color: #002c74;
            border-bottom: 3px solid #001b72;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .nav-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
            margin: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-menu a:hover {
            background-color: #0037ae;
        }

        main {
            background: white;
            margin: 30px auto;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        h1 {
            color: #903;
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #903;
        }

        h2 {
            color: #002c74;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #dfe4ed;
        }

        h3 {
            color: #001b72;
            font-size: 1.4rem;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #444;
            font-size: 1.05rem;
        }

        .transition-section {
            margin: 40px 0;
            padding: 25px;
            background-color: #eef2ff;
            border-left: 4px solid #002c74;
            border-radius: 4px;
        }

        .transition-section p {
            color: #333;
            line-height: 1.8;
        }

        {% if links %}
        .links-section {
            margin: 40px 0;
            padding: 30px;
            background-color: #f8f9fc;
            border-radius: 8px;
            border: 1px solid #dfe4ed;
        }

        .links-section h3 {
            color: #002c74;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #002c74;
        }

        .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: 12px 20px;
            margin-bottom: 30px;
        }

        .links-section li {
            padding: 8px 0;
        }

        .links-section a {
            color: #001b72;
            text-decoration: none;
            border-bottom: 1px dotted #001b72;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            color: white;
            background-color: #001b72;
            border-bottom-color: transparent;
            padding: 2px 6px;
            margin: -2px -6px;
        }
        {% endif %}

        footer {
            background-color: #002c74;
            color: white;
            text-align: center;
            padding: 25px 20px;
            margin-top: 50px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .site-title {
                font-size: 1.4rem;
            }

            .nav-menu {
                flex-direction: column;
            }

            .nav-menu a {
                padding: 12px 20px;
                border-bottom: 1px solid #001b72;
            }

            main {
                padding: 25px 20px;
                margin: 20px auto;
            }

            h1 {
                font-size: 1.8rem;
            }

            h2 {
                font-size: 1.5rem;
            }

            h3 {
                font-size: 1.2rem;
            }

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

        @media (max-width: 480px) {
            .site-title {
                font-size: 1.2rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article p {
                font-size: 1rem;
            }
        }
    