/* =========================
   PAGE HERO
========================= */
.page-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.page-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* =========================
   MAIN SECTION
========================= */
.program-section {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

/* TITLES */
.program-section h2 {
  font-size: 28px;
  color: #062a5e;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

/* underline */
.program-section h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #062a5e, #b8860b);
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* TEXT */
.program-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}

/* =========================
   LIST STYLE
========================= */
.program-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.program-list li {
  background: white;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* hover effect */
.program-list li:hover {
  transform: translateY(-3px);
  background: #f5f7fa;
}

/* =========================
   HIGHLIGHT BOX
========================= */
.highlight {
  background: #f5f7fa;
  border-left: 4px solid #062a5e;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  margin: 20px auto;
  max-width: 800px;
}

/* =========================
   SPACING BETWEEN SECTIONS
========================= */
.program-section + .program-section {
  margin-top: 40px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 28px;
  }

  .program-section {
    margin: 50px auto;
  }

  .program-section h2 {
    font-size: 22px;
  }

  .program-section p {
    font-size: 15px;
  }
}