body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF4500; border-bottom: 3px solid #FFD700; }
        h2 { color: #008000; margin-top: 30px; }
        h3 { color: #8B4513; }
        .logo { font-size: 2.5em; font-weight: bold; color: #FF4500; text-shadow: 2px 2px 4px #000; }
        .nav { background: #FFD700; padding: 10px; display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 20px; }
        .mobile-toggle { display: none; }
        .download-btn, .login-btn { background: #FF4500; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; margin: 10px 0; display: inline-block; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
        }
