
        :root {
            --primary-dark: #006233;
            --accent-red: #990000;
            --text-color: #333;
            --bg-light: #f0f0e8;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-light);
            background-image: url('/archive/images/bg_zellij01.jpg');
            color: var(--text-color);
            line-height: 1.6;
        }

        header {
            background: #fff;
            padding: 20px 0;
            text-align: center;
            border-bottom: 3px solid var(--primary-dark);
            background-image: url('/archive/images/bannerconsulat.jpg');
            background-size: cover;
            background-position: center;
        }

        nav {
            background: #000;
            padding: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        nav a:hover {
            color: #ccc;
        }

        .lang-switcher {
            text-align: center;
            padding: 10px;
        }

        .hero-section {
            text-align: center;
            padding: 40px 20px;
        }

        .hero-section img {
            max-width: 100%;
            height: auto;
            border: 5px solid #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
            font-size: 0.8rem;
        }

        @media (min-width: 768px) {
            nav { gap: 30px; }
        }
    