.page-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(6,46,87,0.96), rgba(10,74,131,0.92));
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(31,179,94,0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
}

.page-hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 780px;
}

.page-hero p {
  max-width: 760px;
  color: #edf5fc;
  font-size: 18px;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1fb35e;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-grid,
.stats-grid,
.course-list-grid,
.blog-grid,
.contact-grid,
.highlight-grid,
.value-grid {
  display: grid;
  gap: 24px;
}

.info-grid.two-col,
.contact-grid,
.highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.stat-box,
.info-card,
.course-detail-card,
.blog-card,
.contact-card,
.form-card,
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 34px;
  color: #062e57;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box p,
.info-card p,
.value-card p,
.contact-card p,
.blog-card p,
.course-detail-card p,
.form-card p {
  color: #555;
}

.bg-light {
  background: #f6f9fc;
}

.about-image-box img,
.contact-map img,
.blog-card img,
.course-banner img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.about-image-box img,
.contact-map img {
  min-height: 100%;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #444;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1fb35e;
  font-weight: 700;
}

.course-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.course-detail-card {
  border-top: 4px solid #1fb35e;
}

.course-detail-card h3 {
  font-size: 24px;
  color: #062e57;
  margin-bottom: 8px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}

.course-meta span {
  background: #eef5fb;
  color: #062e57;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.course-detail-card ul {
  list-style: disc;
  padding-left: 18px;
  color: #444;
}

.course-detail-card ul li + li {
  margin-top: 6px;
}

.form-card form,
.contact-form form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #062e57;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  border: 1px solid #d5e3ef;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #222;
  background: #fff;
  outline: none;
}

.input-group textarea {
  resize: vertical;
  min-height: 140px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #1fb35e;
  box-shadow: 0 0 0 3px rgba(31,179,94,0.12);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card img {
  height: 220px;
  margin-bottom: 18px;
}

.blog-meta {
  color: #1fb35e;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.blog-card h3,
.value-card h3,
.info-card h3,
.contact-card h3 {
  color: #062e57;
  margin-bottom: 12px;
  font-size: 22px;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 14px;
  color: #062e57;
  font-weight: 700;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 340px;
  gap: 32px;
}

.post-article,
.post-sidebar {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.post-article h2,
.post-sidebar h3 {
  color: #062e57;
  margin: 24px 0 12px;
}

.post-article p,
.post-article li,
.post-sidebar li {
  color: #444;
}

.post-article ul,
.post-sidebar ul {
  list-style: disc;
  padding-left: 18px;
}

.contact-card h4 {
  color: #062e57;
  margin-bottom: 6px;
}

.contact-map img {
  height: 100%;
  min-height: 320px;
}

.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-links a {
  color: #dce9f5;
}

@media (max-width: 992px) {
  .stats-grid,
  .blog-grid,
  .course-list-grid,
  .highlight-grid,
  .contact-grid,
  .info-grid.two-col,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 70px 0 60px;
  }

  .page-hero h1 {
    font-size: 31px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .stat-box,
  .info-card,
  .course-detail-card,
  .blog-card,
  .contact-card,
  .form-card,
  .value-card,
  .post-article,
  .post-sidebar {
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}