   h2 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
    }

    .stats-banner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 25px; /* reduced gap */
      text-align: center;
      flex-wrap: nowrap;
    }

    .stat-box {
      background: #007BFF; /* Blue background */
      color: #fff;
      border-radius: 12px;
      padding: 15px 20px; /* smaller padding */
      min-width: 110px; /* smaller width */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 5px 15px rgba(0, 123, 255, 0.4);
    }

    .stat-icon {
      font-size: 28px; /* smaller icon */
      margin-bottom: 8px;
    }

    .stat-number {
      font-size: 22px; /* smaller number */
      font-weight: 700;
      color: #fff;
    }

    .stat-label {
      font-size: 12px; /* smaller label */
      color: #FCF5F5;
      font-weight: 700;
      margin-top: 3px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .stats-banner { gap: 18px; }
      .stat-box { min-width: 100px; padding: 12px 15px; }
      .stat-number { font-size: 20px; }
    }

    @media (max-width: 600px) {
      .stats-banner { gap: 12px; }
      .stat-box { min-width: 90px; padding: 10px 12px; }
      .stat-number { font-size: 18px; }
      .stat-icon { font-size: 24px; }
    }