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

        body {
            font-family: "Helvetica Neue", Arial, FreeSans, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

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

        header {
            background: #fff;
            border-bottom: 1px solid #ddd;
            padding: 20px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #205c90;
        }

        .language-selector {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .language-selector a {
            display: inline-flex;
            align-items: center;
            padding: 5px 8px;
            text-decoration: none;
            color: #666;
            border-radius: 3px;
            transition: background-color 0.3s;
        }

        .language-selector a:hover {
            background-color: #f0f0f0;
        }

        .language-selector img {
            margin-right: 5px;
        }

        nav {
            background: #205c90;
            padding: 0;
        }

        .nav-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-list li {
            border-right: 1px solid #fff;
        }

        .nav-list li:last-child {
            border-right: none;
        }

        .nav-list a {
            display: block;
            padding: 15px 20px;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .nav-list a:hover,
        .nav-list a.selected {
            background: #75ad0a;
        }

        main {
            background: #fff;
            margin: 20px auto;
            max-width: 1200px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .breadcrumbs {
            background: #f8f9fa;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: #666;
            border-bottom: 1px solid #e9ecef;
        }

        .breadcrumbs a {
            color: #205c90;
            text-decoration: none;
        }

        .content {
            padding: 30px;
        }

        h1 {
            font-size: 2.5rem;
            color: #205c90;
            margin-bottom: 20px;
            font-weight: bold;
            letter-spacing: -0.02em;
        }

        .description {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            font-weight: 500;
            line-height: 1.5;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        article h2, article h3, article h4 {
            color: #444;
            margin: 25px 0 15px 0;
        }

        article h2 {
            font-size: 1.6rem;
        }

        article h3 {
            font-size: 1.3rem;
        }

        article a {
            color: #205c90;
            text-decoration: none;
            border-bottom: 1px solid #ccc;
        }

        article a:hover {
            color: #75ad0a;
            border-bottom-color: #75ad0a;
        }

        .country-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .country-item {
            text-align: center;
            padding: 15px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .country-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .country-item img {
            width: 100%;
            max-width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 3px;
            margin-bottom: 10px;
        }

        .country-item a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }

        .transition-content {
            margin: 30px 0;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #205c90;
        }

        .links-section {
            margin-top: 40px;
        }

        .links-section h3 {
            color: #205c90;
            margin-bottom: 15px;
            font-size: 1.3rem;
            border-bottom: 2px solid #e9ecef;
            padding-bottom: 10px;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .links-grid ul {
            list-style: none;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            border: 1px solid #e9ecef;
        }

        .links-grid li {
            padding: 8px 0;
            border-bottom: 1px dotted #ddd;
        }

        .links-grid li:last-child {
            border-bottom: none;
        }

        .links-grid a {
            color: #205c90;
            text-decoration: none;
            font-size: 0.95rem;
        }

        .links-grid a:hover {
            color: #75ad0a;
            text-decoration: underline;
        }

        footer {
            background: #ddd;
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.8;
        }

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

        footer a:hover {
            color: #205c90;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .header-content {
                flex-direction: column;
                text-align: center;
            }

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

            .nav-list li {
                border-right: none;
                border-bottom: 1px solid #fff;
            }

            .nav-list li:last-child {
                border-bottom: none;
            }

            h1 {
                font-size: 2rem;
            }

            .content {
                padding: 20px;
            }

            .country-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 15px;
                padding: 15px;
            }

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

        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }

            .description {
                font-size: 1.1rem;
            }

            .country-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .nav-list a {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
        }
    