* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.page-hero {
  background: linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.hero-label {
  display: inline-block;
  color: #d4a24c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.page-hero p {
  max-width: 760px;
  margin: auto;
  color: #ddd;
  font-size: 17px;
}

/* COMMON */
.services-section,
.programs-section,
.postgraduate-section,
.universities-section,
.cta-section {
  padding: 80px 0;
}

.services-section,
.postgraduate-section {
  background: #f8f8f8;
}

.programs-section,
.universities-section {
  background: #fff;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #111;
}

.section-heading p {
  font-size: 16px;
  color: #666;
}

.section-tag {
  display: inline-block;
  color: #d4a24c;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}

.service-number {
  font-size: 38px;
  font-weight: 700;
  color: rgba(212, 162, 76, 0.18);
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #666;
}

/* PROGRAMS */
.programs-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: #f8f8f8;
  border-radius: 18px;
  padding: 30px 24px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.program-card h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.program-card ul {
  list-style: none;
}

.program-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}

.program-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4a24c;
  font-size: 18px;
  line-height: 1;
}

/* POSTGRADUATE */
.postgraduate-box {
  background: #fff;
  border-radius: 22px;
  padding: 50px 35px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  border: 1px solid #efefef;
  text-align: center;
}

.postgraduate-box h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.postgraduate-intro {
  max-width: 760px;
  margin: 0 auto 35px;
  color: #666;
}

.postgraduate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.pg-item {
  background: #f8f8f8;
  border: 1px solid #ececec;
  padding: 16px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #333;
}

.postgraduate-note {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 15px;
}

/* UNIVERSITIES */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.university-logo-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: 0.3s ease;
}

.university-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.university-logo-box img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
}

/* CTA */
.cta-section {
  background: #d4a24c;
  text-align: center;
  color: #fff;
}

.cta-box {
  max-width: 900px;
  margin: auto;
}

.cta-small {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.cta-box h2 {
  font-size: 34px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-layout {
    grid-template-columns: 1fr;
  }

  .postgraduate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .universities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 70px 20px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .section-heading h2,
  .postgraduate-box h2 {
    font-size: 28px;
  }

  .section-heading p,
  .postgraduate-intro,
  .postgraduate-note {
    font-size: 15px;
  }

  .services-grid,
  .postgraduate-grid,
  .universities-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .programs-section,
  .postgraduate-section,
  .universities-section,
  .cta-section {
    padding: 60px 0;
  }

  .service-card,
  .program-card,
  .postgraduate-box,
  .university-logo-box {
    padding: 24px 20px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-label {
    font-size: 12px;
  }

  .service-card h3,
  .program-card h3 {
    font-size: 20px;
  }

  .university-logo-box {
    min-height: 110px;
  }

  .university-logo-box img {
    max-height: 55px;
  }
}

.programs-cta {
  background: #d4a24c; /* premium gold tone */
  color: #fff;
  padding: 70px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* inner content width control */
.programs-cta .cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* first line with program list */
.programs-line {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.programs-line strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* second benefits line */
.benefits-line {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 25px;
}

/* main heading */
.cta-heading {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* call button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.23);
}

/* tiny decorative accent if desired, optional */
.programs-cta::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 28px;
  }

  .programs-line strong {
    font-size: 16px;
  }

  .programs-line span,
  .benefits-line {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}
