/* Mobile responsive overrides.
   The page was saved from a desktop render, so a few containers don't stack
   on small screens. These rules fix that below the md breakpoint (768px). */

@media (max-width: 767px) {
  /* Banner: stack the text column above the "Secure your spot" card,
     instead of squeezing them side by side. */
  .ban-row {
    flex-direction: column !important;
    gap: 24px;
  }
  .ban-aside {
    width: 100% !important;
    align-self: stretch !important;
  }

  /* Course Snapshot ("Designed to Build…"): the side image overlaps the
     bullet list on mobile. The original mobile design hides it, so the
     bullets get the full width. */
  .cs-img {
    display: none !important;
  }

  /* "Go from AI novice to ML pro" steps: the desktop zigzag uses a fixed
     column height + fixed-height cards, so on mobile the cards bleed into
     each other. Collapse it to a simple vertical stack and drop the
     decorative connector (which only aligns in the desktop layout). */
  .steps-wrap {
    height: auto !important;
    display: block !important;
  }
  .steps-col {
    height: auto !important;
    display: block !important;
  }
  .steps-col > div {
    height: auto !important;
    width: 100% !important;
    display: block !important;
    /* override the inline zigzag offsets (margin-top:-60px / 24px) */
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }
  .steps-col > div:last-child {
    margin-bottom: 0 !important;
  }
  .step-card {
    height: auto !important;
    width: 100% !important;
  }
  .steps-connector {
    display: none !important;
  }
  /* The "Apply Now" button has a negative top margin (for the desktop
     overlap) that hides it behind the last card on mobile. */
  .steps-cta {
    margin-top: 24px !important;
  }
}

/* ===== Disclaimer section ===== */
.disclaimer-section {
  background: #fff;
  padding: 48px 0 64px;
}
.disclaimer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
  font-family: 'CircularXXTT', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.disclaimer-title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 500;
  color: #4a3f4a;
  letter-spacing: -0.3px;
}
.disclaimer-list {
  margin: 0;
  padding-left: 22px;
  list-style: decimal;
  color: #3a3a3a;
}
.disclaimer-list li {
  margin-bottom: 18px;
  padding-left: 8px;
  font-size: 16px;
  line-height: 1.55;
}
.disclaimer-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .disclaimer-inner {
    padding: 0 20px;
  }
  .disclaimer-title {
    font-size: 24px;
  }
  .disclaimer-list li {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
