
        :root {
            --primary: #1b4332; /* Forest Green */
            --secondary: #2d6a4f;
            --accent: #d4a373; /* Gold/Oak tone */
            --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);
            /* Added padding-top to prevent content jumping under sticky header */
            padding-top: 0; 
        }

        /* 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;
        }

        .header-info { text-align: right; }


        /* 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;
            transition: color 0.3s;
        }

        nav a:hover { color: var(--accent); }

        /* 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;
        }

        /* MAIN CONTENT */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 5%;
            text-align: center;
        }

        .container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            padding: 40px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .status-badge {
            background: #d1e7dd;
            color: #0f5132;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        footer {
            background: var(--dark);
            color: #999;
            padding: 40px 5%;
            text-align: center;
            font-size: 0.85rem;
        }

        h2 { color: var(--primary); border-left: 5px solid var(--accent); padding-left: 15px; margin-top: 0; }

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

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

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

            nav.active { display: flex; }

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

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

            .hero { padding: 50px 20px; }
            .hero h1 { font-size: 1.6rem; }
        }
