body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #fff5e6; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 3px solid #ff9900; }
        .logo { font-size: 28px; font-weight: bold; color: #ff6600; text-transform: uppercase; letter-spacing: 2px; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu { display: none; font-size: 24px; cursor: pointer; }
        h1 { color: #e64d00; margin: 30px 0 20px; }
        h2 { color: #ff6600; margin: 25px 0 15px; border-bottom: 2px solid #ffcc99; }
        h3 { color: #ff8c42; margin: 20px 0 10px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 30px; margin: 15px 0; background-color: #ff6600; color: white; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .stats-box { background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin: 20px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
        footer { margin-top: 40px; padding: 20px 0; border-top: 2px solid #ffcc99; text-align: center; }
        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu { display: block; }
            .show-menu { display: flex; flex-direction: column; }
            .stats-box { margin: 10px 0; }
        }
