  h2 {
      margin: 20px 0 15px;
      font-size: 22px;
      text-align: center;
      color: #333;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      justify-content: center;
      text-align: center;
      padding: 15px;
      max-width: 1000px;
      margin: auto;
    }

    .stat-box {
      background: #0084ff;
      color: #fff;
      padding: 10px;   /* reduced height */
      border-radius: 12px;
      box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-box:hover {
      transform: translateY(-4px);
      box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
    }

    .stat-icon {
      font-size: 24px;  /* reduced size */
      margin-bottom: 6px;
      display: block;
    }

    .stat-number {
      font-size: 20px;  /* reduced size */
      text-align: center;
      font-weight: bold;
    }

    .stat-label {
      font-size: 13px;  /* reduced size */
      margin-top: 3px;
      font-weight: bold;
      opacity: 0.9;
    }

    /* Mobile optimization */
    @media (max-width: 600px) {
      h2 {
        font-size: 18px;
      }
      .stat-number {
        font-size: 16px;
      }
      .stat-label {
        font-size: 11px;
      }
    }