
        :root {
            --primary: #1b4332; 
            --secondary: #2d6a4f;
            --accent: #d4a373; 
            --light: #f8f9fa;
            --dark: #212529;
            --header-height: 80px;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            background-color: #f0f2f0;
            color: var(--dark);
        }

        /* STICKY HEADER */
        header {
            background-color: var(--primary);
            color: white;
            padding: 0 5%;
            height: var(--header-height);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid var(--accent);
            position: sticky;
            top: 0;
            z-index: 2000;
        }

        /* STICKY NAVIGATION */
        nav {
            background: white;
            padding: 0.5rem 5%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            justify-content: flex-start;
            position: sticky;
            top: var(--header-height);
            z-index: 1000;
        }

        nav a {
            text-decoration: none;
            color: var(--primary);
            margin-right: 20px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        /* HAMBURGER ICON */
        .menu-toggle {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        /* MAP CONTENT */
        .map-header {
            background: var(--secondary);
            color: white;
            padding: 30px 5%;
            text-align: center;
        }

        .map-container {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 20px;
            padding: 30px 5%;
            max-width: 1400px;
            margin: auto;
        }

        .map-display {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .map-display img {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .map-legend {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: fit-content;
        }

        .district-tag {
            display: block;
            padding: 10px;
            margin-bottom: 10px;
            border-left: 4px solid var(--accent);
            background: #f9f9f9;
            font-size: 0.9rem;
        }

        .district-tag strong { color: var(--primary); }

        footer {
            background: var(--dark);
            color: #ccc;
            padding: 40px 5% 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.8rem;
        }

        /* MOBILE RESPONSIVE RULES */
        @media (max-width: 768px) {
            :root { --header-height: 70px; }

            .header-info { display: none; }
            .menu-toggle { display: flex; }

            header h1 { font-size: 1.2rem; }

            nav {
                display: none;
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 10px 0;
            }

            nav.active { display: flex; }

            nav a {
                margin: 0;
                padding: 15px 25px;
                border-bottom: 1px solid #eee;
                width: 100%;
            }

            .map-container {
                grid-template-columns: 1fr;
                padding: 15px;
            }
        }
