
        :root {
            --primary: #006838;
            --secondary: #02198b;
            --accent: #29c4a9;
            --dark: #1a1718;
            --light: #f4f4f4;
            --white: #ffffff;
        }

        body { font-family: 'Open Sans', Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; }
        header { background: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--primary); }
        .logo img { max-height: 60px; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }
        
        .hero { 
            background: linear-gradient(rgba(0,104,56,0.8), rgba(2,25,139,0.8)), url('/assets/Home-Header-Image-Edited.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 20px;
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .card { padding: 20px; border: 1px solid #ddd; border-radius: 8px; text-align: center; }
        
        .icon-box { width: 60px; height: 60px; background: var(--light); margin: 0 auto 15px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
        
        footer { background: var(--dark); color: white; text-align: center; padding: 40px 20px; margin-top: 40px; }
        
        @media (max-width: 768px) {
            nav ul { flex-direction: column; gap: 10px; }
            .hero { height: 300px; }
            header { flex-direction: column; }
        }
    