
        :root {
            --primary: #005a87;
            --secondary: #0088cc;
            --dark: #111;
            --light: #f4f4f4;
            --accent: #00d084;
        }

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

        header { background: #fff; border-bottom: 3px solid var(--primary); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .logo-box { width: 120px; }
        .logo-box 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; text-transform: uppercase; }

        .hero { 
            background: linear-gradient(rgba(0, 90, 135, 0.8), rgba(0, 90, 135, 0.8)), url('/assets/ccBg.png');
            background-size: cover;
            color: #fff;
            padding: 4rem 5%;
            text-align: center;
        }

        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; padding: 4rem 5%; }
        .card { border: 1px solid #ddd; padding: 1.5rem; border-radius: 8px; transition: transform 0.2s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px 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: #fff; padding: 2rem 5%; text-align: center; margin-top: 2rem; }

        @media (max-width: 768px) {
            nav { display: none; }
            .hero h1 { font-size: 1.8rem; }
        }
    