body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; background-color: #FFF9E6; }
        header { background-color: #FF4500; color: white; padding: 15px; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 2.2em; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: space-around; margin: 15px 0; flex-wrap: wrap; }
        nav a { color: white; text-decoration: none; font-weight: bold; padding: 8px 12px; border-radius: 5px; transition: background 0.3s; }
        nav a:hover { background-color: #FF6B35; }
        .mobile-menu-btn { display: none; background: #FF6B35; color: white; border: none; padding: 10px; position: absolute; right: 10px; top: 10px; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
        }
        section { margin: 30px 0; background: white; padding: 25px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        h2 { color: #FF4500; border-bottom: 2px solid #FFD700; padding-bottom: 5px; margin-bottom: 15px; }
        h3 { color: #FF6B35; margin: 20px 0 10px; }
        .btn { display: inline-block; background-color: #FF4500; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 10px 5px; transition: background 0.3s; }
        .btn:hover { background-color: #FF6B35; }
        .download-section { text-align: center; background-color: #FFF0F5; }
        .stats { display: flex; justify-content: space-around; flex-wrap: wrap; margin: 20px 0; }
        .stat-box { background: white; padding: 15px; border-radius: 8px; box-shadow: 0 0 5px rgba(0,0,0,0.1); width: 30%; min-width: 200px; margin: 10px; text-align: center; }
        .stat-box strong { font-size: 1.5em; color: #FF4500; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 15px 0; }
        footer { text-align: center; padding: 20px; background-color: #333; color: white; margin-top: 30px; }
        footer a { color: #FFD700; text-decoration: none; }
