.stats-wrapper {
  width: 100%;
  padding: 30px 15px;
  background-color: #f9fafb;
  display: flex;
  justify-content: center;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}

.stat-box {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box h4 {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 12px;
}

.big-count {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  animation: pop 0.4s ease-in-out;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .stat-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}