        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #0633fa 0%, #f59919 100%);
            min-height: 100vh;
            color: white;
        }
        
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 1rem;
            text-align: center;
            z-index: 100;
        }
        
        nav a {
            display: inline-block;
            margin: 0 1.5rem;
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 1.1em;
            transition: color 0.3s ease;
        }
        
        nav a:hover {
            color: #ece89c;
        }
        
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            text-align: center;
        }
        
        .profile-pic {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 20px;
            max-width: 600px;
            line-height: 1.6;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease;
            border: 2px solid white;
        }
        
        .cta-button:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .profile-pic {
                width: 150px;
                height: 150px;
            }
        }