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