
        :root {
            --primary: #005b9a;
            --secondary: #00a0d1;
            --dark: #000000;
            --white: #ffffff;
            --gray: #f4f4f4;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; line-height: 1.6; color: #333; }

        header { background: var(--dark); padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .logo img { height: 40px; }
        nav ul { list-style: none; display: flex; gap: 20px; }
        nav a { color: var(--white); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

        .hero { 
            height: 80vh; 
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/BigHit_FortYork-3.jpg');
            background-size: cover; 
            background-position: center; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center; 
            color: white; 
            text-align: center; 
            padding: 20px;
        }
        .hero h1 { font-size: 3rem; margin-bottom: 1rem; }

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

        footer { background: var(--dark); color: #888; text-align: center; padding: 40px 20px; margin-top: 50px; }
        
        @media (max-width: 768px) {
            nav { display: none; }
            .hero h1 { font-size: 2rem; }
        }
    