.vision-mission-section {
  background: linear-gradient(to right, #e6f2f2, #fdfdfd);
  padding: 60px 20px;
}

.vision-mission-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;
  color: #333;
}

.vision-mission-container h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #1e8c82;
  text-transform: uppercase;
}

.vm-box {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-5px);
}

.vm-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #444;
  text-align: center;
}

.vm-box p {
  margin-bottom: 15px;
  font-size: 16px;
}

.vm-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.vm-box ul li {
  margin: 8px 0;
  font-size: 16px;
}

.vm-box ul li::before {
  content: "✔ ";
  color: #1e8c82;
  font-weight: bold;
}

.vm-closing {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
  color: #1e8c82;
}