.counter-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.counter-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 30px 20px;
  width: 260px;
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0;
}

.label {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #444;
}

.split-counters {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.split {
  flex: 1;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 15px 10px;
}

.split .counter {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}

.split .sub-label {
  font-size: 16px;
  color: #555;
}

.blue .icon { color: #007BFF; }
.green .icon { color: #28a745; }
.orange .icon { color: #fd7e14; }

@media (max-width: 768px) {
  .counter-box {
    width: 100%;
    max-width: 320px;
  }
}
