
        :root {
            --primary: #005380;
            --accent: #007aff;
            --dark: #000000;
            --white: #ffffff;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: var(--font); line-height: 1.6; color: #333; background: #f4f4f4; }

        header { background: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 3px solid var(--primary); }
        .logo-container { width: 150px; }
        .logo-container img { width: 100%; height: auto; }
        
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 0.9rem; }

        .hero { 
            height: 60vh; 
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/CWE-landscape-Hero.webp') center/cover; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: var(--white); 
            text-align: center;
        }

        .hero h1 { font-size: 3rem; margin-bottom: 1rem; }

        .container { max-width: 1000px; margin: 3rem auto; padding: 2rem; background: var(--white); border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }

        .btn { display: inline-block; padding: 12px 24px; background: var(--primary); color: #fff; text-decoration: none; border-radius: 5px; margin-top: 1rem; }

        footer { background: var(--dark); color: var(--white); text-align: center; padding: 2rem; margin-top: 3rem; }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 1rem; }
            nav ul { flex-direction: column; align-items: center; gap: 10px; }
            .hero h1 { font-size: 2rem; }
        }
    