.info-box {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* Hover effect for boxes */
.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.info-number {
  font-size: 48px;
  font-weight: 700;
  color: #5a67d8; /* Stylish school-friendly blue */
}

.info-text {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

.divider {
  height: 4px;
  width: 60px;
  background-color: #5a67d8;
  margin: 15px auto;
  border-radius: 2px;
}

/* Responsive design */
@media (max-width: 767px) {
  .info-box {
    padding: 30px 15px;
  }
  .info-number {
    font-size: 36px;
  }
  .info-text {
    font-size: 16px;
  }
}