
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        header {
            background-color: #003A8B;
            color: white;
            padding: 1rem 0;
            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;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        nav {
            background-color: #fff;
            border-bottom: 3px solid #FDC400;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-menu {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            display: block;
            padding: 1rem 1.5rem;
            color: #003A8B;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .nav-menu a:hover {
            background-color: #009de0;
            color: white;
        }
        
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        
        h1 {
            color: #003A8B;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 4px solid #FDC400;
        }
        
        article {
            background: white;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        article h2 {
            color: #003A8B;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        article h3 {
            color: #009de0;
            margin-top: 1.2rem;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }
        
        article h4 {
            color: #333;
            margin-top: 1rem;
            margin-bottom: 0.6rem;
            font-size: 1.2rem;
        }
        
        article p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        
        .transition-section {
            background: white;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .transition-section p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        
        {% if links %}
        .links-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        
        .links-section h2 {
            color: #003A8B;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #FDC400;
        }
        
        .links-section h3 {
            color: #009de0;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem 2rem;
            margin-bottom: 1.5rem;
        }
        
        .links-section li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .links-section a {
            color: #003A8B;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            position: relative;
            padding-left: 1rem;
        }
        
        .links-section a:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #FDC400;
        }
        
        .links-section a:hover {
            color: #009de0;
        }
        {% endif %}
        
        footer {
            background-color: #003A8B;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        
        .footer-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1rem;
        }
        
        .footer-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-menu a:hover {
            color: #FDC400;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .nav-menu a {
                padding: 0.8rem 1rem;
            }
            
            article, .transition-section, .links-section {
                padding: 1.5rem;
            }
            
            {% if links %}
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
            {% endif %}
            
            .footer-menu {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            
            article h2 {
                font-size: 1.5rem;
            }
            
            article h3 {
                font-size: 1.2rem;
            }
        }
    