:root {
  --vvgf-primary: #dd761b;
  --vvgf-primary-dark: #bf6316;
  --vvgf-dark: #00394f;
  --vvgf-dark-2: #012b3b;
  --vvgf-ink: #102027;
  --vvgf-text: #3c4a52;
  --vvgf-bg: #f7f8fa;
  --vvgf-border: #e7eaee;
  --vvgf-white: #ffffff;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--vvgf-text);
  background: var(--vvgf-bg);
}

main {
  min-height: 55vh;
}

img {
  display: block;
  max-width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e9ee;
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.site-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 195px;
  max-width: 30vw;
  height: auto;
}

.nav {
  flex: 1;
  min-width: 0;
  margin-left: 18px;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow: visible;
  scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--vvgf-ink);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #0f2331;
  background: #f3f6f9;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--vvgf-border);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}

.dropdown a {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--vvgf-ink);
  font-size: 14px;
}

.dropdown a:hover {
  background: #f4f8fb;
  color: var(--vvgf-primary);
}

.has-dropdown:hover > .dropdown,
.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  clip-path: none;
  margin-right: 0;
  margin-left: 16px;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--vvgf-ink);
  transition: 0.2s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.btn-primary,
.bg_btn {
  background: var(--vvgf-primary);
  color: #fff !important;
  border-color: var(--vvgf-primary);
}

.btn-primary:hover,
.bg_btn:hover {
  background: var(--vvgf-primary-dark);
  border-color: var(--vvgf-primary-dark);
  color: #fff;
}

.bg_btn:hover,
.bg_btn:focus {
  color: #222 !important;
}

.btn-soft {
  background: #ffffff;
  color: var(--vvgf-primary) !important;
  border-color: var(--vvgf-primary);
  min-width: 156px;
  font-weight: 700;
}

.btn-soft:hover {
  background: #fff4e8;
}

.btn-outline,
.btn-outline-dark,
.wborder_btn {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
}

.page-hero .btn-outline,
.page-hero .btn-outline-dark,
.section .btn-outline {
  color: var(--vvgf-primary) !important;
  border-color: var(--vvgf-primary);
}

.page-hero .btn-outline:hover,
.page-hero .btn-outline-dark:hover,
.section .btn-outline:hover,
.wborder_btn:hover {
  background: rgba(221, 118, 27, 0.1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Home banner */
.home-banner {
  overflow: hidden;
  height: auto;
  min-height: 760px;
}

.home-banner .container {
  position: relative;
}

.home-banner .banner-content {
  height: auto;
  min-height: 760px;
  padding: 120px 0 120px;
}

.home-banner .banner-content-inner {
  max-width: 700px;
}

.home-banner .banner-content p {
  max-width: 660px;
}

.home-banner .bbtns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-banner .wborder_btn {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
}

.home-banner .wborder_btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.home-banner .banner-content .sinfo {
  margin-left: 0;
  top: 0;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-banner .banner-content .sinfo img {
  max-width: 116px;
}

.home-banner .banner_img {
  bottom: 24px;
}

.home-banner .total_students_badge {
  left: -55px;
}

.home-banner .total_course_badge {
  bottom: 18px;
  right: -30px;
}

.home-banner .book_icon,
.home-banner .tpshape,
.home-banner .btmshape,
.home-banner .bwavehape {
  pointer-events: none;
}

.home-banner .book_icon i {
  font-size: 26px;
}

.home-banner .eitem {
  --px: 0px;
  --py: 0px;
  transform: translate3d(var(--px), var(--py), 0);
  will-change: transform;
  transition: transform 0.2s ease-out;
}

.home-banner .total_students_badge,
.home-banner .total_course_badge {
  animation: heroBadgePulse 4.5s ease-in-out infinite;
}

.home-banner .total_course_badge {
  animation-delay: 0.7s;
}

@keyframes heroBadgePulse {
  0%, 100% {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow: 0 22px 56px rgba(221, 118, 27, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-banner .eitem {
    transition: none;
    transform: none;
  }

  .home-banner .total_students_badge,
  .home-banner .total_course_badge {
    animation: none;
  }
}

/* Generic sections */
.section {
  padding: 90px 0;
}

main > .section:last-child {
  padding-bottom: 28px;
}

.section-muted {
  background: #f2f4f7;
}

.kicker {
  display: inline-block;
  color: var(--vvgf-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.page-hero {
  background: linear-gradient(120deg, #00394f 0%, #01445d 100%);
  color: #fff;
  padding: 78px 0 72px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 10px 0 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 840px;
}

.page-hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.15;
  color: #14262f;
}

.text-muted {
  color: #5f6d76 !important;
}

.infinite-teachings {
  background: #f7f8fa;
}

.teachings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.teaching-card {
  position: relative;
  background: #fff;
  border: 2px solid #f5f5f5;
  border-radius: 8px;
  min-height: 324px;
  padding: 42px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.infinite-teachings .teaching-card:hover {
  border-color: #dd761b;
  border-radius: 8px 60px 8px 8px;
}

.teaching-number {
  position: absolute;
  top: 0;
  left: 28px;
  transform: translateY(-1px);
  background: #dd761b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 8px;
  border-radius: 0 0 6px 6px;
  min-width: 28px;
  text-align: center;
}

.teaching-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #e5f8f8;
  color: #dd761b;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  transition: 0.5s;
}

.teaching-icon i {
  font-size: 30px;
}

.infinite-teachings .teaching-card:hover .teaching-icon {
  background: #dd761b;
  color: #fff;
}

.teaching-card h3 {
  margin: 0 0 12px;
  color: #222a33;
  font-size: 20px;
  line-height: 1.24;
  font-size: clamp(20px, 1.05vw, 30px);
}

.teaching-card p {
  margin: 0;
  color: #6b7580;
  font-size: 15px;
  line-height: 1.55;
  font-size: clamp(14px, 0.84vw, 18px);
}

.about-journey {
  background: #f7f8fa;
  position: relative;
  padding: 86px 0 100px;
  overflow: hidden;
}

.about-journey .container {
  position: relative;
}

.about-journey-shape {
  position: absolute;
  background: rgba(13, 95, 249, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-shape-right {
  width: 82px;
  height: 82px;
  top: -10px;
  right: 112px;
}

.about-shape-left {
  width: 180px;
  height: 180px;
  top: 290px;
  left: -68px;
  clip-path: inset(0 50% 0 0);
}

.about-journey-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.about-journey-media {
  max-width: 610px;
}

.about-journey-media img {
  width: 100%;
  height: auto;
}

.about-journey-content .about-title {
  margin-bottom: 26px;
}

.about-journey-content .about-title span {
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.about-journey-content .about-title h2 {
  margin: 0;
  color: #222;
  font-size: 35px;
  line-height: 1.22;
}

.about-journey-content > p {
  color: #555;
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 26px;
}

.about-journey-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.about-journey-point .aicon {
  flex-shrink: 0;
  margin-top: 3px;
}

.about-journey-point .aicon svg {
  width: 50px;
  height: 50px;
  display: block;
}

.about-journey-copy h4 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.16;
  color: #222;
}

.about-journey-copy p {
  margin: 0;
  color: #555;
  font-size: 17px;
  line-height: 1.9;
}

.about-journey-cta {
  margin-top: 8px;
  min-width: 250px;
  text-align: center;
}

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

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card,
.panel {
  background: #fff;
  border: 1px solid var(--vvgf-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(11, 19, 27, 0.05);
}

.card h3,
.panel h3,
.card h2,
.panel h2 {
  margin-bottom: 12px;
  color: #162b34;
}

.card p,
.panel p,
.card li,
.panel li {
  color: #46545e;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff3e7;
  color: var(--vvgf-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.card-icon i {
  font-size: 20px;
  line-height: 1;
}

.card[href] {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card[href]:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.panel-dark {
  background: linear-gradient(145deg, #023a50, #012f40);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.panel-dark h2,
.panel-dark h3,
.panel-dark p,
.panel-dark li {
  color: #fff;
}

.list-check,
.list-lines {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-check li,
.list-lines li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vvgf-primary);
  box-shadow: 0 0 0 3px rgba(221, 118, 27, 0.2);
}

.list-lines li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 2px;
  background: var(--vvgf-primary);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #23404c;
  background: #e8f2f6;
}

.timeline {
  display: grid;
  gap: 14px;
}

.phase {
  display: flex;
  gap: 12px;
}

.phase-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff0e1;
  color: var(--vvgf-primary);
  font-weight: 700;
}

.stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  border: 1px solid #e9eef2;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  background: #fbfdff;
}

.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  color: var(--vvgf-primary);
}

.stat span {
  font-size: 12px;
  color: #5f6e77;
}

.cta-band {
  margin-top: 30px;
  border-radius: 16px;
  background: linear-gradient(120deg, #013548 0%, #01445d 100%);
  color: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-band h3 {
  color: #fff;
  margin: 0 0 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.tier-card {
  position: relative;
}

.tier-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vvgf-primary);
  background: #fff4e8;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--vvgf-border);
  border-radius: 14px;
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid #edf0f3;
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
}

th {
  background: #f8fafc;
  color: #1e3440;
}

.note {
  border-left: 3px solid var(--vvgf-primary);
  padding-left: 12px;
  color: #5d6b74;
  margin-top: 10px;
}

/* Contact */
.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #203640;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7dee6;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 15px;
  color: #20323b;
  background: #fff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #63a1c7;
  box-shadow: 0 0 0 3px rgba(22, 121, 184, 0.14);
}

/* Footer */
.site-footer {
  background: #003346;
  color: #d8e8f2;
  margin-top: 0;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.footer-logo {
  width: 195px;
  max-width: 100%;
  margin-bottom: 12px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.site-footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a,
.footer-bottom a {
  color: #d8e8f2;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

/* Reveal */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1280px) and (min-width: 992px) {
  .logo img {
    width: 162px;
  }

  .nav {
    margin-left: 10px;
  }

  .nav-list {
    gap: 2px;
  }

  .nav-link {
    font-size: 13px;
    min-height: 34px;
    padding: 0 8px;
  }

  .header-actions {
    margin-left: 10px;
  }

  .header-actions .btn-soft {
    min-width: 132px;
    min-height: 34px;
    font-size: 13px;
    padding: 0 14px;
  }
}

@media (max-width: 1200px) {
  .logo img {
    width: 172px;
  }

  .nav-link {
    padding: 0 10px;
    font-size: 14px;
  }

  .banner_img {
    width: min(340px, 33vw);
  }

  .home-banner {
    min-height: 700px;
  }

  .home-banner .banner-content {
    min-height: 700px;
    padding: 110px 0 100px;
  }

  .home-banner .total_students_badge {
    left: -40px;
  }

  .home-banner .total_course_badge {
    right: -14px;
  }
}

@media (max-width: 1100px) {
  .site-header .nav-wrap {
    min-height: 64px;
  }

  .mobile-toggle {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d7dde3;
  }

  #site-nav.nav,
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    width: 100vw;
    max-width: 100vw;
    flex: none;
    margin-left: 0;
    margin-right: 0;
    background: #fff;
    border-top: 1px solid #e7eaee;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    max-height: calc(100vh - 64px);
    overflow: auto;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #site-nav .nav-list,
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    overflow: visible;
    width: 100%;
  }

  #site-nav .nav-list > li {
    display: block;
    width: 100%;
  }

  #site-nav .nav-link,
  .nav-link {
    width: 100%;
    border-radius: 10px;
    min-height: 42px;
  }

  #site-nav .dropdown,
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    display: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: 1px solid #edf0f3;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .header-actions .btn-soft {
    display: none;
  }

  .header-actions {
    background: transparent;
    clip-path: none;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .home-banner,
  .home-banner .banner-content {
    min-height: auto;
    height: auto;
    padding: 70px 0 56px;
  }

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

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

  .about-journey-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-journey-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .about-shape-left {
    display: none;
  }

  .about-shape-right {
    right: 18px;
    top: -4px;
  }

  .split,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 56px 0;
  }

  main > .section:last-child {
    padding-bottom: 20px;
  }

  .page-hero {
    padding: 52px 0 46px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .home-banner,
  .home-banner .banner-content {
    padding: 52px 0 44px;
  }

  .home-banner .banner-content .sinfo {
    margin-top: 12px;
  }

  .about-journey {
    padding: 54px 0 60px;
  }

  .about-journey-grid {
    gap: 20px;
  }

  .about-journey-content .about-title {
    margin-bottom: 18px;
  }

  .about-journey-content > p {
    margin-bottom: 18px;
  }

  .about-journey-point {
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 44px 0;
  }

  main > .section:last-child {
    padding-bottom: 16px;
  }

  .page-hero {
    padding: 42px 0 36px;
  }

  .home-banner,
  .home-banner .banner-content {
    padding: 42px 0 36px;
  }

  .logo img {
    width: 150px;
    max-width: 48vw;
  }

  .home-banner .title,
  .page-hero h1,
  .section-head h2 {
    word-break: break-word;
  }

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

  .page-hero-actions,
  .btn-row {
    width: 100%;
  }

  .page-hero-actions .btn,
  .btn-row .btn {
    width: 100%;
  }

  .grid-3,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .teachings-grid {
    grid-template-columns: 1fr;
  }

  .teaching-card {
    min-height: auto;
    padding: 40px 18px 24px;
  }

  .about-journey {
    padding: 44px 0 50px;
  }

  .about-journey-content .about-title h2 {
    font-size: 30px;
  }

  .about-journey-content > p {
    font-size: 16px;
  }

  .about-journey-point {
    gap: 12px;
  }

  .about-journey-point .aicon svg {
    width: 44px;
    height: 44px;
  }

  .about-journey-copy h4 {
    font-size: 22px;
    line-height: 1.2;
  }

  .about-journey-copy p {
    font-size: 16px;
  }

  .about-journey-cta {
    width: 100%;
  }

  .card,
  .panel,
  .cta-band {
    padding: 18px;
  }

  .site-footer {
    margin-top: 0;
  }
}
