

.clinical-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #eaf4f4, #f9fdfd);
  border-radius: 20px;
  margin: 40px 20px;
}

.clinical-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1f3c88;
  /*font-weight: 700;*/
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex: 1 1 200px;
  max-width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.stat-box i {
  font-size: 40px;
  margin-bottom: 12px;
  color: #1f3c88;
  display: block;
}

.stat-box h3 {
  font-size: 32px;
  margin: 12px 0;
  color: #2fa72b;
}

.stat-box p {
  font-size: 16px;
  margin: 0;
  color: #555;
}
