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

        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #FFFFFF;
            color: #000000;
            line-height: 1.6;
        }

        .header {
            background-color: #FFFFFF;
            border-bottom: 5px solid #FFCC00;
            padding: 20px 0;
            text-align: center;
        }

        .header-logo {
            font-size: 2em;
            font-weight: bold;
            color: #000000;
            margin-bottom: 10px;
        }

        .country-nav {
            background-color: #FED556;
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #000000;
        }

        .country-nav a {
            color: #000000;
            text-decoration: none;
            margin: 0 5px;
            font-size: 0.9em;
        }

        .country-nav a:hover {
            text-decoration: underline;
        }

        .top-services {
            background-color: #FFFFCC;
            padding: 10px;
            text-align: center;
            border-bottom: 1px solid #000000;
            font-size: 0.9em;
        }

        .top-services a {
            color: #000000;
            text-decoration: none;
            margin: 0 8px;
        }

        .top-services a:hover {
            text-decoration: underline;
        }

        .main-tabs {
            background-color: #f0f0f0;
            padding: 15px 0;
            text-align: center;
            border-bottom: 2px solid #000000;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab {
            background-color: #000080;
            color: #FFFFFF;
            padding: 8px 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            border-radius: 4px 4px 0 0;
            display: inline-block;
        }

        .tab:hover {
            background-color: #0000a0;
        }

        .tab.active {
            background-color: #808080;
            color: #FFFF00;
        }

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

        h1 {
            color: #000080;
            font-size: 2em;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #FFCC00;
        }

        article {
            background-color: #FFFFFF;
            padding: 20px;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        article h2 {
            color: #000080;
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        article h3 {
            color: #CC0000;
            margin-top: 20px;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .transition-section {
            background-color: #FFFFCC;
            padding: 20px;
            margin-bottom: 30px;
            border-left: 5px solid #FFCC00;
        }

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

        {% if links %}
        .links-section {
            background-color: #F5F5F5;
            padding: 30px 20px;
            border: 2px solid #FFCC00;
            border-radius: 5px;
        }

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

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

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 30px;
            margin-bottom: 20px;
        }

        .links-section li {
            margin-bottom: 8px;
            break-inside: avoid;
            padding-left: 15px;
            position: relative;
        }

        .links-section li:before {
            content: "•";
            color: #FFCC00;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .links-section a {
            color: #000080;
            text-decoration: none;
            font-size: 0.95em;
        }

        .links-section a:hover {
            color: #CC0000;
            text-decoration: underline;
        }
        {% endif %}

        .footer {
            background-color: #f0f0f0;
            border-top: 2px solid #000000;
            padding: 20px;
            margin-top: 40px;
            text-align: center;
        }

        .footer-countries {
            background-color: #FED556;
            padding: 15px;
            margin-bottom: 15px;
            font-size: 0.9em;
        }

        .footer-countries a {
            color: #000000;
            text-decoration: none;
            margin: 0 5px;
        }

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

        .footer-links {
            margin-bottom: 15px;
            font-size: 0.9em;
        }

        .footer-links a {
            color: #000000;
            text-decoration: none;
            margin: 0 8px;
        }

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

        .footer-copyright {
            font-size: 0.8em;
            color: #666666;
            margin-top: 15px;
        }

        @media (max-width: 768px) {
            .header-logo {
                font-size: 1.5em;
            }

            .country-nav,
            .top-services {
                font-size: 0.8em;
                padding: 10px;
            }

            .main-tabs {
                flex-direction: column;
                padding: 10px;
            }

            .tab {
                width: 100%;
                text-align: center;
            }

            h1 {
                font-size: 1.5em;
            }

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }

            {% if links %}
            .links-section ul {
                columns: 1;
            }
            {% endif %}

            .footer-countries,
            .footer-links {
                font-size: 0.8em;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }

            article {
                padding: 15px;
            }

            .country-nav a,
            .top-services a {
                display: inline-block;
                margin: 3px;
            }
        }
    