.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

@media (min-width: 768px) {
    .col-md-auto { width: auto; }
    .col-md-1 { width: 8.33333333%; }
    .col-md-2 { width: 16.66666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33333333%; }
    .col-md-5 { width: 41.66666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33333333%; }
    .col-md-8 { width: 66.66666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33333333%; }
    .col-md-11 { width: 91.66666667%; }
    .col-md-12 { width: 100%; }
    .me-md-0, .ms-md-0 { margin-right: 0 !important; }
    .me-md-auto, .ms-md-auto { margin-left: auto !important; }
}

@media (min-width: 992px) {
    .col-lg-auto { width: auto; }
    .col-lg-1 { width: 8.33333333%; }
    .col-lg-2 { width: 16.66666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33333333%; }
    .col-lg-5 { width: 41.66666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33333333%; }
    .col-lg-8 { width: 66.66666667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33333333%; }
    .col-lg-11 { width: 91.66666667%; }
    .col-lg-12 { width: 100%; }
}
/* Add Overlay Color Black */
.subpage-hero, .book-hero {
    background-image: url('../assets/bg_img.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.subpage-hero::after, .book-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 30 51 / 12%) 0%, rgb(10 91 176 / 21%) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Make sure content sits above the overlay */
.subpage-hero-content {
  position: relative;
  z-index: 2;
}
/* ============================================
   MINIMAL CTA — Used on every page
   Light bg, single accent color, simple structure
   ============================================ */
.subpage-cta {
  padding: 5rem 0;
  background: #fff;
  border-top: 1px solid #E5EDF5;
}
.subpage-cta-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.subpage-cta-content { }

.subpage-cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1BAFC4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.subpage-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0B1E33;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.subpage-cta p {
  font-size: 1rem;
  color: #5C6F85;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.subpage-cta-actions {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-white {
  position: relative;
  background: #0A5BB0;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-white::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #042B57 0%, #0A5BB0 100%);
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-cta-white:hover::before {
  transform: translateX(0);
}
.btn-cta-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 91, 176, 0.25);
}

.btn-cta-outline {
  position: relative;
  background: transparent;
  color: #0B1E33;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1.5px solid #E5EDF5;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.btn-cta-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #F7FAFE;
  transform: translateX(101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-cta-outline:hover::before {
  transform: translateX(0);
}
.btn-cta-outline:hover {
  border-color: #cbd5e1;
  color: #0A5BB0;
}
