container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
}

.counter-box {
  /*background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-3px);
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #252668;
  margin: 20px 0;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.counter-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-500px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(500px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.counter-box:nth-child(1),
.counter-box:nth-child(2) {
  animation: slideInLeft 1s ease-out;
}

.counter-box:nth-child(3),
.counter-box:nth-child(4) {
  animation: slideInRight 1s ease-out;
}
