body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); margin: 0; padding: 0; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; background: rgba(255,255,255,0.9); border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.2); }
        header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
        .logo { font-size: 28px; font-weight: 900; color: #ffd700; text-shadow: 2px 2px 4px #000; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { color: #fff; text-decoration: none; font-weight: 600; }
        .mobile-nav-toggle { display: none; font-size: 24px; cursor: pointer; }
        h1 { color: #b21f1f; font-size: 32px; margin-bottom: 20px; }
        h2 { color: #1a2a6c; font-size: 26px; margin: 25px 0 15px; }
        h3 { color: #fdbb2d; font-size: 22px; margin: 20px 0 10px; }
        .btn { display: inline-block; padding: 12px 25px; background: #b21f1f; color: #fff; border-radius: 5px; text-decoration: none; font-weight: 700; margin: 10px 0; }
        .download-section { text-align: center; padding: 30px 0; background: #f5f5f5; border-radius: 8px; margin: 30px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }
        .table-stats { width: 100%; border-collapse: collapse; margin: 20px 0; }
        .table-stats th, .table-stats td { border: 1px solid #ddd; padding: 12px; text-align: left; }
        .table-stats th { background: #1a2a6c; color: #fff; }
        footer { text-align: center; padding: 20px; margin-top: 40px; color: #fff; }
        @media (max-width: 768px) {
            .container { padding: 15px; }
            nav ul { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background: rgba(0,0,0,0.9); padding: 20px; border-radius: 8px; }
            nav ul.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .logo { font-size: 24px; }
        }
