.about-schools-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 32px;
  background: linear-gradient(135deg, #ffffff, #f5f8fc 85%);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(9,44,92,0.15);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}
.about-schools-section.hovered {
  transform: translateY(-6px) scale(1.015);
}
.about-header {
  text-align: center;
  padding: 50px 20px 20px;
  position: relative;
}
.about-h1 {
  font-size: 2.5rem;
  color: #092c5c;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.about-subtitle {
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
}
.about-decor-line {
  width: 60px;
  height: 4px;
  background: #ffcc00;
  margin: 22px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(255,204,0,0.5);
}
.about-content {
  font-size: 1.08rem;
  line-height: 1.75;
  padding: 0 20px 50px;
  max-width: 740px;
  margin: 0 auto;
  color: #22407b;
}
.about-para {
  margin-bottom: 20px;
  font-weight: 500;
}
.about-last {
  margin-bottom: 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .about-schools-section {
    padding: 0 14px;
  }
  .about-h1 {
    font-size: 2rem;
  }
  .about-subtitle {
    font-size: 1rem;
  }
  .about-content {
    font-size: 1rem;
    padding: 20px 0 40px 0;
  }
}
