
        :root {
            --primary: #005bce;
            --dark: #011835;
            --light: #f4f4f4;
            --accent: #00d084;
            --text: #333;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Montserrat', Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text); background: #eee; }

        header { background: #fff; padding: 2rem 0; text-align: center; border-bottom: 3px solid var(--primary); }
        .logo { max-width: 300px; display: block; margin: 0 auto; }
        
        nav { background: var(--dark); color: #fff; padding: 0.5rem; text-align: center; }
        nav a { color: #fff; text-decoration: none; padding: 0.5rem 1rem; font-size: 0.9rem; text-transform: uppercase; display: inline-block; }
        nav a:hover { color: var(--accent); }

        .hero { 
            height: 400px; 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/assets/Zaza-2Bgroup-2Bpic-2B1-500x380.jpg') center/cover; 
            display: flex; align-items: center; justify-content: center; color: #fff;
        }

        .container { max-width: 1000px; margin: 2rem auto; padding: 0 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
        
        .card { background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 1rem; }

        footer { background: var(--dark); color: #ccc; padding: 3rem 1rem; text-align: center; margin-top: 3rem; }
        .footer-links { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
        .footer-links a { color: #fff; text-decoration: none; }

        /* Icon Substitutes */
        .badge-alt { display: inline-block; width: 60px; height: 60px; background: #ddd; border-radius: 50%; margin: 5px; vertical-align: middle; }

        @media (max-width: 768px) {
            .footer-links { flex-direction: column; }
        }
    