.page {
  background: #fff;
  color: #333;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

/* Header */
.header-sec {
  text-align: center;
  padding: 60px 20px 40px;
}

.header-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  position: relative;
  display: inline-block;
}

.header-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #ffa500;
  margin: 8px auto 0;
  border-radius: 2px;
}

.header-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Section Layout */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  line-height: 2em;
  /* font-size: 1.5em; */
}

.section-text {
  flex: 1.2;
}

.section-heading {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-heading::before {
  content: "▌";
  margin-right: 10px;
  font-size: 24px;
  vertical-align: middle;
}

.section-paragraph {
  font-size: 16px;
  color: #444;
  text-align: justify;
}

.section-image {
  flex: 1;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Section Variations */
.section-kinder .section-heading {
  color: #ffa500;
}

.section-elementary {
  flex-direction: row-reverse;
}
.section-elementary .section-heading {
  color: #00bfff;
}

.section-middle .section-heading {
  color: #6a5acd;
}

/* Responsive */
@media (max-width: 900px) {
  .section {
    flex-direction: column;
    text-align: center;
  }
  .section-image {
    width: 100%;
    height: 200px;
  }
}
