body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid #FF9933; }
        .logo { font-size: 28px; font-weight: bold; color: #FF9933; text-shadow: 1px 1px 2px #000; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #138808; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #138808; color: white; border: none; padding: 8px 12px; border-radius: 4px; }
        h1 { color: #FF9933; border-bottom: 2px solid #138808; padding-bottom: 10px; }
        h2 { color: #138808; margin-top: 30px; }
        h3 { color: #FF9933; margin-top: 25px; }
        .btn { display: inline-block; background: #138808; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .download-section { background: #FFF8E1; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 20px 0; }
        .stat-card { background: #E8F5E9; padding: 15px; border-radius: 8px; text-align: center; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 2px solid #FF9933; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            .mobile-menu-btn { display: block; }
            .stats-grid { grid-template-columns: 1fr; }
        }
