
        :root {
            --primary: #007cba;
            --secondary: #004a59;
            --accent: #02ab6c;
            --text: #333;
            --light: #f4f4f4;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text); }
        
        header { background: #fff; padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--primary); }
        .logo { height: 60px; }
        
        nav { display: flex; gap: 15px; flex-wrap: wrap; }
        nav a { text-decoration: none; color: var(--secondary); font-size: 0.9rem; font-weight: bold; }
        
        .hero { 
            position: relative; height: 500px; width: 100%; 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/assets/Home@2x.jpg') center/cover;
            display: flex; align-items: center; justify-content: center; color: white; text-align: center;
        }
        
        .container { max-width: 1200px; margin: 2rem auto; padding: 0 20px; }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        
        .card { padding: 2rem; background: var(--light); border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        
        footer { background: var(--secondary); color: white; padding: 2rem; text-align: center; margin-top: 3rem; }
        
        @media (max-width: 768px) {
            nav { justify-content: center; }
            .hero { height: 300px; }
        }
    