
        :root {
            --primary-blue: #0063dc;
            --dark: #0f0f0f;
            --light: #ffffff;
            --font-stack: 'Roboto', Helvetica, Arial, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-stack); background-color: var(--dark); color: var(--light); line-height: 1.6; }

        header { padding: 2rem; display: flex; justify-content: space-between; align-items: center; position: absolute; width: 100%; z-index: 10; }
        .logo img { height: 60px; filter: invert(1); }
        
        nav ul { display: flex; list-style: none; gap: 2rem; }
        nav a { color: var(--light); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

        .hero { height: 100vh; background: url('/assets/Screen+Shot+2023-06-19+at+4.57.35+pm.png') center/cover no-repeat; display: flex; align-items: center; justify-content: center; position: relative; }
        .hero::before { content: ''; position: absolute; top:0; left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
        .hero-content { position: relative; text-align: center; }
        .hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }

        footer { padding: 2rem; text-align: center; font-size: 0.7rem; color: #666; }

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