.about-page {
  padding: 50px 0;
  background: #f7fbff;
}

.about-cover {
  background: linear-gradient(135deg, #0d6efd, #65c7ff);
  color: #fff;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  padding: 30px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-cover h1 {
  margin: 0 0 12px;
  font-size: 42px;
}

.about-cover p {
  margin: 0;
  font-size: 22px;
}

.about-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  overflow: hidden;
}

.about-school-image {
  margin: -28px -28px 25px;
  background: #f4f6f9;
  text-align: center;
}

.about-school-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #f4f6f9;
}

.about-card h2,
.about-card h3 {
  margin-top: 0;
  color: #0d6efd;
}

.about-card p {
  line-height: 1.9;
  color: #444;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-cover h1 {
    font-size: 30px;
  }

  .about-cover p {
    font-size: 18px;
  }

  .about-school-image img {
    max-height: 300px;
  }
}