:root {
  --container-width: 1400px;
  --container-padding: 0 24px;
  --primary-color: #102175;
  --color-accent-red: #BB0014;
  --color-nav-text: #102175;
  --color-white: #ffffff;
  --color-bg-body: #FAF8FF;
  --btn-gradient-getstarted: linear-gradient(91.06deg, #102175 0.91%, #BB0014 100%);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-btn: 12px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-body);
  color: var(--primary-color);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ==================================================================== */
/* Header */
/* ==================================================================== */
.site-header {
  width: 100%;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(22, 32, 91, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-nav-text);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-nav-hover);
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-getstarted {
  background: var(--btn-gradient-getstarted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  transition: var(--transition);
}

.btn-getstarted i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-getstarted:hover i {
  transform: translateX(4px);
}

.btn-login {
  background-color: var(--color-white);
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--primary-color);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-login:hover {
  background-color: #f6f8fd;
}

.mobile-drawer-header,
.mobile-nav-actions,
.nav-overlay {
  display: none;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

/* User Profile Dropdown */
.user-profile-wrapper {
  position: relative;
  display: inline-block;
}

.user-profile-btn {
  background-color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}


.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 260px;
  max-width: calc(100vw - 32px);
  background-color: var(--color-white);
  border-radius: 18px;
  box-shadow: 0px 10px 30px rgba(16, 33, 117, 0.15);
  border: 1px solid rgba(222, 224, 255, 0.5);
  overflow: hidden;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
}

.user-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  background-color: #DEE0FF;
  padding: 14px;
  text-align: left;
}

.user-dropdown-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.user-dropdown-email {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.user-dropdown-phone {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary-color);
}

.user-dropdown-body {
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.user-dropdown-item:hover {
  background-color: #F4F6FD;
}

.dropdown-item-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.dropdown-item-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #454651;
  margin-bottom: 2px;
}

.dropdown-item-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #6B7280;
}

.user-dropdown-footer {
  padding: 8px 14px 18px 14px;
  text-align: center;
}

.btn-logout {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 5px 15px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: var(--primary-color);
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}

.btn-logout:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
}

@media screen and (max-width: 1024px) {
  .header-nav {
    gap: 26px;
  }

  .btn-getstarted {
    padding: 10px 20px;
  }

  .btn-login {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 868px) {
  .header-right-group {
    gap: 10px;
  }

  .mobile-toggle {
    display: flex;
    order: 1;
  }

  .user-profile-wrapper {
    order: 2;
  }

  .user-profile-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 10px;
  }

  .header-actions {
    display: none;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(12, 25, 84, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 14px;
    z-index: 1002;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header-nav.active {
    left: 0;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 6px;
  }

  .drawer-logo-link {
    display: flex;
    align-items: center;
  }

  .drawer-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .drawer-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: var(--transition);
  }

  .drawer-close-btn:hover {
    color: var(--color-accent-red);
    transform: rotate(90deg);
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f6;
    width: 100%;
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
  }

  .mobile-nav-actions .btn-getstarted,
  .mobile-nav-actions .btn-login {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .header-inner {
    height: 74px;
  }

  .header-nav {
    width: 80%;
    max-width: 300px;
  }
}

/* ==================================================================== */
/* Footer */
/* ==================================================================== */
.site-footer {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 70px 0 30px 0;
  position: relative;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 71px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #DEE0FF;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(222, 224, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-white);
  color: var(--primary-color);
}

.footer-nav-col {
  min-width: 180px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-links li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 42px;
  color: #DEE0FF;
  display: inline-block;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-contact-col {
  max-width: 340px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 42px;
  color: #DEE0FF;
}

.footer-contact-item i {
  font-size: 18px;
  color: var(--color-white);
}

.footer-contact-item a {
  color: var(--color-white);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: #DEE0FF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(222, 224, 255, 0.15);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #DEE0FF;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-divider {
  opacity: 0.6;
}

.footer-bottom-left a {
  color: #DEE0FF;
  transition: var(--transition);
}

.footer-bottom-left a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.webmantra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #E84E36;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 11px;
}

@media screen and (max-width: 992px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-left {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
  }

  .footer-desc {
    margin-bottom: 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 18px;
    padding-bottom: 20px;
  }

  .footer-heading {
    margin-bottom: 0px;
    font-size: 18px;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 8px;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

/* ==================================================================== */
/* Hero */
/* ==================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  background-image: url('Images/hero-bg.png');
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('Images/hero-bg-shadow.png');
  background-size: cover;
  background-position: center right;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 648px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 58px;
  line-height: 63px;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
  color: var(--color-white);
  margin-bottom: 22px;
}

.hero-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  margin-bottom: 50px;
}

.btn-services {
  background-color: #DEE0FF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: var(--primary-color);
  border-radius: 12px;
  padding: 8px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* ==================================================================== */
/* About */
/* ==================================================================== */
.about-section {
  padding: 100px 0;
  background-image: url('Images/about-bg-color.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  top: 40px;
  left: 0;
  width: 460px;
  pointer-events: none;
  z-index: 1;
}

.about-bg-shape img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left top;
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 72px;
}

.about-image-wrapper {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-content {
  flex: 1.15;
  max-width: 650px;
}

.about-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5px;
  color: var(--color-accent-red);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 19px;
}

.about-desc {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin-bottom: 34px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 19px;
}

.feature-icon {
  width: 57px;
  height: 57px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.icon-flask {
  background-color: #DEE0FF;
}

.feature-icon.icon-bulb {
  background-color: #FFDAD6;
}

.feature-icon.icon-compass {
  background-color: #DAEEFD;
}

.feature-text h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 0px;
}

.feature-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.btn-about {
  background-color: var(--primary-color);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-about i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-about:hover i {
  transform: translateX(4px);
}

/* ==================================================================== */
/* How We Work */
/* ==================================================================== */
.work-section {
  padding: 85px 0;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.work-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.work-left {
  flex: 1;
  max-width: 580px;
}

.work-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5px;
  color: var(--color-white);
  margin-bottom: 30px;
}

.work-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #DEE0FF;
  margin-bottom: 18px;
}

.work-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  margin-bottom: 46px;
}

.work-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0c1954;
}

.work-video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.work-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition);
}

.work-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.work-play-btn:hover img {
  transform: scale(1.1);
}

.work-right {
  flex: 1.1;
  max-width: 620px;
}

.work-steps {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  backdrop-filter: blur(10px);
  max-width: 540px;
  width: 100%;
}

.step-card:nth-child(even) {
  margin-left: 56px;
}

.step-card:nth-child(odd) {
  margin-left: 0;
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 2px solid #9A9ED0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--color-white);
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 20px;
  letter-spacing: -0.96px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.step-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #DEE0FF;
}

.work-cta {
  text-align: center;
  margin-top: 100px;
}

.btn-work {
  background: #DEE0FF;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.btn-work i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-work:hover i {
  transform: translateX(4px);
}

/* ==================================================================== */
/* Journey */
/* ==================================================================== */
.journey-section {
  background-color: #DEE0FF;
  padding: 60px 0;
  width: 100%;
}

.journey-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.journey-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 900px;
}

.journey-content {
  flex: 1;
  max-width: 580px;
}

.journey-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.journey-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.journey-qr-card {
  background: #FFFFFF;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 170px;
  height: 170px;
}

.journey-qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.journey-cta {
  margin-top: 40px;
  text-align: center;
}

.btn-journey {
  background-color: var(--primary-color);
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-journey i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-journey:hover i {
  transform: translateX(4px);
}

/* ==================================================================== */
/* Services */
/* ==================================================================== */
.services-section {
  padding: 85px 0;
  background-color: #FAFBFF;
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 69px auto;
}

.services-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5px;
  color: var(--color-accent-red);
  margin-bottom: 31px;
}

.services-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 19px;
}

.services-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 4px 20px rgba(16, 33, 117, 0.04);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 30px rgba(16, 33, 117, 0.08);
}

.service-info {
  margin-bottom: 48px;
}

.service-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 0px;
}

.service-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.service-img-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f2fa;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.services-cta {
  text-align: center;
  margin-top: 100px;
}

.btn-services {
  background-color: var(--primary-color);
  border-radius: var(--radius-btn);
  padding: 12px 40px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-services i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-services:hover i {
  transform: translateX(4px);
}

/* ==================================================================== */
/* Conversation */
/* ==================================================================== */
.conversation-section {
  background: url('Images/conversation-bg-img.png') no-repeat center center;
  background-size: cover;
  padding: 65px 0;
  width: 100%;
  position: relative;
}

.conversation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.conversation-content {
  max-width: 650px;
}

.conversation-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.conversation-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.conversation-cta {
  flex-shrink: 0;
}

.btn-conversation {
  background: var(--btn-gradient-getstarted);
  border-radius: var(--radius-btn);
  padding: 12px 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.btn-conversation i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-conversation:hover i {
  transform: translateX(4px);
}

/* ==================================================================== */
/* About Vector Page */
/* ==================================================================== */

.page-banner-section {
  background-color: var(--primary-color);
  height: 200px;
  display: flex;
  align-items: center;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 63px;
  letter-spacing: -1px;
  color: var(--color-white);
  margin: 0;
}

/* ==================================================================== */
/* About Intro (Who We Are) */
/* ==================================================================== */

.about-intro-section {
  padding: 80px 0;
  background: radial-gradient(123.24% 171.09% at 0% 0%, #DEE0FF 0%, rgba(222, 224, 255, 0) 50%), radial-gradient(123.24% 171.09% at 100% 100%, #FFDAD6 0%, rgba(255, 218, 214, 0) 50%);
  position: relative;
  overflow: hidden;
}

.about-intro-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.about-intro-left {
  flex: 1;
  max-width: 460px;
}

.about-intro-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5px;
  color: var(--color-accent-red);
  margin-bottom: 15px;
}

.about-intro-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin: 0;
}

.about-intro-right {
  flex: 1.35;
  max-width: 680px;
  display: flex;
  flex-direction: column;
}

.about-intro-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #454651;
  margin-bottom: 31px;
}

.about-cards-list {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.about-card-item {
  background-color: #DEE0FF;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.about-card-icon {
  width: 60px;
  height: 60px;
}

.about-card-content {
  flex: 1;
}

.about-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 28px;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 21px;
}

.about-card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

/* ==================================================================== */
/* Core Values */
/* ==================================================================== */

.core-values-section {
  padding: 100px 0;
  width: 100%;
}

.core-values-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px auto;
}

.core-values-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.core-values-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.core-value-card {
  border-radius: 20px;
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-enabler {
  background-color: #DEE0FF;
}

.card-clarity {
  background-color: #FFDAD6;
}

.card-empathetic {
  background-color: #DAEEFD;
}

.card-futureready {
  background-color: #F0DEFF;
}

.core-value-icon {
  background-color: var(--color-white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.core-value-icon img {
  width: 37px;
  height: 37px;
}

.core-value-name {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 0px;
}

.core-value-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

/* ==================================================================== */
/* The Programme */
/* ==================================================================== */

.the-programme-section {
  padding: 90px 0;
  background-color: #DEE0FF;
  position: relative;
  overflow: hidden;
}

.programme-container {
  display: flex;
  gap: 60px;
}

.programme-left {
  flex: 1.1;
  max-width: 645px;
}

.programme-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 5px;
  color: var(--color-accent-red);
  margin-bottom: 31px;
}

.programme-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 31px;
}

.programme-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin-bottom: 50px;
}

.programme-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-card {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 22px 28px;
  box-shadow: 0 4px 20px rgba(16, 33, 117, 0.04);
  transition: var(--transition);
}

.benefit-child {
  border-left: 6px solid var(--color-accent-red);
}

.benefit-parents {
  border-left: 6px solid var(--primary-color);
}

.benefit-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 10px;
}

.benefit-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.programme-right {
  flex: 0.9;
  max-width: 520px;
  display: flex;
  justify-content: center;
}

.programme-image-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 33, 117, 0.1);
}

.programme-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.target-group-badge {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #DEE0FF;
  border-radius: 0 20px;
  padding: 16px 25px 16px 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.target-group-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-group-text {
  display: flex;
  flex-direction: column;
}

.target-group-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

.target-group-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
}

/* ==================================================================== */
/* Services Detail Page */
/* ==================================================================== */

.services-detail-section {
  padding: 80px 0;
  width: 100%;
}

.services-intro-header {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 60px auto;
}

.services-intro-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.services-intro-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #454651;
  margin-bottom: 14px;
}

.services-intro-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #454651;
  margin: 0;
}

.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail-card {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  transition: var(--transition);
}

.service-detail-card.card-white {
  background-color: var(--color-white);
  padding-left: 0;
}

.service-detail-card.card-lavender {
  background-color: #DEE0FF;
}

.service-detail-card.reverse-layout {
  flex-direction: row-reverse;
  padding-right: 0;
}

.service-detail-img {
  flex: 0 0 540px;
  max-width: 540px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.service-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-detail-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.service-detail-badge {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.service-detail-meta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 20px;
}

.service-detail-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.service-checklist-box {
  border-radius: 20px;
  padding: 20px 24px;
  margin-top: 30px;
}

.service-checklist-box.box-lavender {
  background-color: #DEE0FF;
  margin-bottom: 25px;
}

.service-checklist-box.box-white {
  background-color: var(--color-white);
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
}

.service-checklist li img {
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

.service-journey-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #454651;
  margin: 5px 0;
}

.service-journey-list {
  padding-left: 20px;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #454651;
}

.service-journey-list li {
  margin-bottom: 4px;
}

.conversation-section>.conversation-cta {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

.conversation-container:has(.journey-qr-card) {
  justify-content: center;
  gap: 80px;
}

.conversation-container:has(.journey-qr-card) .conversation-content {
  max-width: 580px;
}

.conversation-container:has(.journey-qr-card) .journey-qr-card {
  width: 170px;
  height: 170px;
  box-shadow: 0px 4px 20px rgba(16, 33, 117, 0.06);
}

/* Responsive */
@media screen and (max-width: 1200px) {

  /* ==================================================================== */
  /* Services */
  /* ==================================================================== */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {

  /* ==================================================================== */
  /* Hero */
  /* ==================================================================== */
  .hero-section {
    min-height: 540px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-content {
    padding: 40px 0;
    max-width: 520px;
  }

  /* ==================================================================== */
  /* About */
  /* ==================================================================== */
  .about-section {
    padding: 70px 0;
  }

  .about-bg-shape {
    width: 420px;
  }

  .about-container {
    gap: 40px;
  }

  .about-title {
    font-size: 36px;
    line-height: 44px;
  }

  .about-image-wrapper {
    max-width: 440px;
  }

  /* ==================================================================== */
  /* How We Work */
  /* ==================================================================== */
  .work-section {
    padding: 70px 0;
  }

  .work-title {
    font-size: 38px;
    line-height: 46px;
  }

  .work-grid {
    gap: 40px;
  }

  /* ==================================================================== */
  /* Journey */
  /* ==================================================================== */
  .journey-wrapper {
    gap: 50px;
  }

  .journey-title {
    font-size: 34px;
    line-height: 42px;
  }

  /* ==================================================================== */
  /* About Vector Page */
  /* ==================================================================== */

  .page-banner-title {
    font-size: 28px;
    line-height: 36px;
  }

  /* ==================================================================== */
  /* About Intro (Who We Are) */
  /* ==================================================================== */

  .about-intro-section {
    padding: 70px 0;
  }

  .about-intro-container {
    gap: 40px;
  }

  .about-intro-title {
    font-size: 34px;
    line-height: 42px;
  }

  .about-card-item {
    padding: 20px 22px;
    gap: 18px;
  }

  /* ==================================================================== */
  /* The Programme */
  /* ==================================================================== */

  .the-programme-section {
    padding: 70px 0;
  }

  .programme-container {
    gap: 36px;
  }

  .programme-title {
    font-size: 34px;
    line-height: 42px;
  }

  .programme-main-img {
    height: 340px;
  }

  /* ==================================================================== */
  /* Core Values */
  /* ==================================================================== */

  .core-values-section {
    padding: 70px 0;
  }

  .core-values-header {
    margin-bottom: 40px;
  }

  .core-values-title {
    font-size: 34px;
    line-height: 42px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .core-value-card {
    padding: 28px 22px;
  }

  /* ==================================================================== */
  /* Services Detail Page */
  /* ==================================================================== */

  .services-detail-section {
    padding: 70px 0;
  }

  .service-detail-card {
    padding: 30px;
    gap: 30px;
  }

  .service-detail-img {
    flex: 0 0 300px;
    max-width: 300px;
  }

  .services-intro-title {
    font-size: 32px;
    line-height: 40px;
  }

  .service-detail-title {
    font-size: 22px;
    line-height: 28px;
  }
}

@media screen and (max-width: 768px) {

  /* ==================================================================== */
  /* Hero */
  /* ==================================================================== */
  .hero-section {
    min-height: auto;
    background-position: center;
  }

  .hero-overlay {
    background-position: center;
  }

  .hero-content {
    padding: 40px 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 26px;
  }

  .btn-services {
    padding: 10px 26px;
    font-size: 14px;
  }

  /* ==================================================================== */
  /* About */
  /* ==================================================================== */
  .about-section {
    padding: 60px 0;
  }

  .about-bg-shape {
    width: 320px;
    opacity: 0.8;
  }

  .about-container {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    font-size: 32px;
    line-height: 40px;
  }

  /* ==================================================================== */
  /* How We Work */
  /* ==================================================================== */
  .work-section {
    padding: 60px 0;
  }

  .work-grid {
    flex-direction: column;
    gap: 40px;
  }

  .work-left,
  .work-right {
    max-width: 100%;
    width: 100%;
  }

  .work-title {
    font-size: 32px;
    line-height: 40px;
  }

  .step-card {
    max-width: 100%;
  }

  .step-card:nth-child(even) {
    margin-left: 0;
  }

  .work-cta {
    margin-top: 50px;
  }

  /* ==================================================================== */
  /* Journey */
  /* ==================================================================== */
  .journey-section {
    padding: 50px 0;
  }

  .journey-wrapper {
    gap: 36px;
  }

  .journey-title {
    font-size: 28px;
    line-height: 36px;
  }

  .journey-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .journey-qr-card {
    width: 150px;
    height: 150px;
    padding: 14px;
  }

  /* ==================================================================== */
  /* Services */
  /* ==================================================================== */
  .services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-title {
    font-size: 32px;
    line-height: 40px;
  }

  .services-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .services-cta {
    margin-top: 40px;
  }

  /* ==================================================================== */
  /* Conversation */
  /* ==================================================================== */
  .conversation-section {
    padding: 50px 0;
  }

  .conversation-container {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .conversation-content {
    max-width: 100%;
  }

  .conversation-title {
    font-size: 32px;
    line-height: 40px;
  }

  .conversation-desc {
    font-size: 15px;
    margin: 0 auto;
  }

  .btn-conversation {
    width: 100%;
    max-width: 280px;
  }

  /* ==================================================================== */
  /* About Vector Page */
  /* ==================================================================== */

  .page-banner-section {
    height: 100px;
  }

  .page-banner-title {
    font-size: 24px;
    line-height: 32px;
  }

  /* ==================================================================== */
  /* About Intro (Who We Are) */
  /* ==================================================================== */

  .about-intro-section {
    padding: 50px 0;
  }

  .about-intro-container {
    flex-direction: column;
    gap: 32px;
  }

  .about-intro-left {
    max-width: 100%;
  }

  .about-intro-right {
    max-width: 100%;
  }

  .about-intro-title {
    font-size: 30px;
    line-height: 38px;
  }

  .about-intro-desc {
    margin-bottom: 20px;
  }

  .about-card-item {
    padding: 18px 20px;
    gap: 16px;
  }

  .about-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .about-card-icon svg {
    width: 42px;
    height: 42px;
  }

  .about-card-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  /* ==================================================================== */
  /* The Programme */
  /* ==================================================================== */

  .the-programme-section {
    padding: 50px 0;
  }

  .programme-container {
    flex-direction: column;
    gap: 36px;
  }

  .programme-left {
    max-width: 100%;
  }

  .programme-right {
    max-width: 100%;
    width: 100%;
  }

  .programme-tag {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 15px;
  }

  .programme-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
  }

  .programme-desc {
    margin-bottom: 25px;
  }

  .programme-benefits-list {
    gap: 20px;
  }

  /* ==================================================================== */
  /* Core Values */
  /* ==================================================================== */

  .core-values-section {
    padding: 50px 0;
  }

  .core-values-title {
    font-size: 30px;
    line-height: 38px;
  }

  .core-values-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .core-value-icon img {
    width: 30px;
    height: 30px;
  }

  .core-value-name {
    font-size: 20px;
    line-height: 26px;
  }

  /* ==================================================================== */
  /* Services Detail Page */
  /* ==================================================================== */

  .services-detail-section {
    padding: 50px 0;
  }

  .services-intro-header {
    margin-bottom: 36px;
  }

  .services-intro-title {
    font-size: 28px;
    line-height: 36px;
  }

  .service-detail-card {
    flex-direction: column !important;
    padding: 24px;
    gap: 24px;
    border-radius: 18px;
  }

  .service-detail-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .service-detail-img img {
    min-height: 220px;
    height: 220px;
    border-radius: 14px;
  }

  .service-checklist-box {
    padding: 16px;
  }

  .service-detail-card.card-white {
    padding-left: 16px;
  }

  .service-detail-card.reverse-layout {
    padding-right: 16px;
  }

  .conversation-container:has(.journey-qr-card) {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }

  .conversation-container:has(.journey-qr-card) .conversation-content {
    text-align: center;
    max-width: 100%;
  }

  .conversation-container:has(.journey-qr-card) .journey-qr-card {
    margin: 0 auto;
  }
}

@media screen and (max-width: 640px) {

  /* ==================================================================== */
  /* Journey */
  /* ==================================================================== */
  .journey-section {
    padding: 40px 0;
  }

  .journey-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 24px;
  }

  .journey-content {
    text-align: center;
  }

  .journey-title {
    font-size: 24px;
    line-height: 32px;
  }

  .journey-desc {
    margin: 0 auto;
  }

  .journey-qr-card {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .journey-cta {
    margin-top: 24px;
    width: 100%;
  }

  .btn-journey {
    width: 100%;
    max-width: 300px;
  }

  /* ==================================================================== */
  /* Services */
  /* ==================================================================== */
  .services-section {
    padding: 45px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-title {
    font-size: 26px;
    line-height: 34px;
  }

  .services-cta {
    margin-top: 32px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {

  /* ==================================================================== */
  /* Hero */
  /* ==================================================================== */
  .hero-title {
    font-size: 27px;
  }

  .hero-content {
    padding: 30px 0;
  }

  /* ==================================================================== */
  /* About */
  /* ==================================================================== */
  .about-section {
    padding: 45px 0;
  }

  .about-bg-shape {
    width: 220px;
    opacity: 0.6;
  }

  .about-title {
    font-size: 26px;
    line-height: 34px;
  }

  .feature-item {
    gap: 14px;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .feature-text h3 {
    font-size: 16.5px;
  }

  .feature-text p {
    font-size: 13.5px;
  }

  /* ==================================================================== */
  /* How We Work */
  /* ==================================================================== */
  .work-section {
    padding: 45px 0;
  }

  .work-title {
    font-size: 26px;
    line-height: 34px;
  }

  .step-card {
    padding: 14px 16px;
    gap: 14px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .work-play-btn {
    width: 52px;
    height: 52px;
  }

  /* ==================================================================== */
  /* Conversation */
  /* ==================================================================== */
  .conversation-section {
    padding: 40px 0;
  }

  .conversation-title {
    font-size: 26px;
    line-height: 34px;
  }

  .conversation-desc {
    font-size: 14px;
    line-height: 22px;
  }

  /* ==================================================================== */
  /* About Vector Page */
  /* ==================================================================== */

  .page-banner-title {
    font-size: 22px;
    line-height: 28px;
  }

  /* ==================================================================== */
  /* About Intro (Who We Are) */
  /* ==================================================================== */

  .about-intro-section {
    padding: 40px 0;
  }

  .about-intro-tag {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 10px;
  }

  .about-intro-title {
    font-size: 26px;
    line-height: 34px;
  }

  .about-intro-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .about-card-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .about-card-text {
    font-size: 13px;
    line-height: 20px;
  }

  /* ==================================================================== */
  /* The Programme */
  /* ==================================================================== */

  .the-programme-section {
    padding: 40px 0;
  }

  .programme-title {
    font-size: 26px;
    line-height: 34px;
  }

  .benefit-card {
    padding: 18px 20px;
  }

  .benefit-title {
    font-size: 18px;
    line-height: 24px;
  }

  .benefit-desc {
    font-size: 13px;
    line-height: 20px;
  }

  /* ==================================================================== */
  /* Core Values */
  /* ==================================================================== */

  .core-values-section {
    padding: 40px 0;
  }

  .core-values-title {
    font-size: 26px;
    line-height: 34px;
  }

  .core-values-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .core-value-card {
    padding: 24px 20px;
    border-radius: 16px;
    align-items: flex-start;
  }

  .core-value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .core-value-name {
    font-size: 18px;
    line-height: 24px;
  }

  .core-value-desc {
    font-size: 14px;
    line-height: 20px;
  }

  /* ==================================================================== */
  /* Services Detail Page */
  /* ==================================================================== */

  .services-detail-section {
    padding: 40px 0;
  }

  .services-intro-title {
    font-size: 24px;
    line-height: 32px;
  }

  .services-intro-subtitle {
    font-size: 14.5px;
    line-height: 22px;
  }

  .services-intro-desc {
    font-size: 13.5px;
    line-height: 21px;
  }

  .service-detail-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .service-detail-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .service-detail-badge {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .service-detail-meta {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .service-detail-img img {
    min-height: 180px;
    height: 180px;
  }

  .service-checklist li {
    font-size: 14px;
    line-height: 20px;
  }

  .conversation-container:has(.journey-qr-card) .journey-qr-card {
    width: 150px;
    height: 150px;
  }

  .conversation-section>.conversation-cta {
    margin-top: 28px;
  }
}

/* ==================================================================== */
/* How We Work Page - Methodology */
/* ==================================================================== */

.methodology-section {
  padding: 80px 0;
  background: radial-gradient(123.24% 171.09% at 0% 0%, #DEE0FF 0%, rgba(222, 224, 255, 0) 50%), radial-gradient(123.24% 171.09% at 100% 100%, #FFDAD6 0%, rgba(255, 218, 214, 0) 50%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.methodology-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px auto;
}

.methodology-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 14px;
}

.methodology-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.methodology-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.methodology-left {
  flex: 1;
  position: sticky;
  top: 110px;
}

.methodology-video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(16, 33, 117, 0.1);
}

.methodology-video-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.methodology-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition);
}

.methodology-play-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.methodology-right {
  flex: 1.15;
  max-width: 620px;
}

.methodology-steps-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.methodology-step-card {
  background-color: #DEE0FF;
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 530px;
  transition: var(--transition);
}

.methodology-step-card.step-even {
  margin-left: 60px;
}

.methodology-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid #FFDAD6;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.methodology-step-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 0px;
}

.methodology-step-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

/* ==================================================================== */
/* Why Choose Section */
/* ==================================================================== */

.why-choose-section {
  padding: 80px 0;
  width: 100%;
  background-color: var(--color-white);
}

.why-choose-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px auto;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.why-choose-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-choose-card {
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.why-choose-card.card-scientific {
  background-color: #DEE0FF;
}

.why-choose-card.card-student {
  background-color: #FFDAD6;
}

.why-choose-card.card-roadmap {
  background-color: #DAEEFD;
}

.why-choose-card.card-risk {
  background-color: #F0DEFF;
}

.why-choose-card.card-expert {
  background-color: #D6FFF2;
}

.why-choose-card.card-parent {
  background-color: #FDF4DA;
}

.why-choose-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-choose-icon img {
  object-fit: contain;
  display: block;
}

.why-choose-content {
  flex: 1;
}

.why-choose-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 0px;
}

.why-choose-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

/* ==================================================================== */
/* What Students Get Section */
/* ==================================================================== */

.students-get-section {
  padding: 85px 0;
  width: 100%;
  background-color: #DEE0FF;
}

.students-get-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.students-get-left {
  flex: 1.1;
  max-width: 580px;
}

.students-get-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 36px;
}

.students-get-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.students-get-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.students-get-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.students-get-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.students-get-content {
  flex: 1;
}

.students-get-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: var(--primary-color);
  margin-bottom: 7px;
}

.students-get-content p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.students-get-right {
  flex: 0.95;
  max-width: 540px;
}

.students-get-img-card {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.students-get-img-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.guided-support-card {
  background: #F2F3FF;
  border-radius: 20px;
  padding: 36px 44px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.guided-support-left {
  flex: 1.15;
  max-width: 580px;
}

.guided-support-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.guided-support-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #454651;
  margin: 0;
}

.guided-support-right {
  flex: 0.95;
  max-width: 480px;
}

.guided-support-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}

.conversation-how-we-work .conversation-content {
  max-width: 880px;
}

.conversation-how-we-work .conversation-container {
  gap: 50px;
  justify-content: center;
}

/* ==================================================================== */
/* Contact Page - Form Section */
/* ==================================================================== */

.contact-form-section {
  padding: 80px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-form-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.contact-info-col {
  flex: 1;
  max-width: 560px;
  padding-top: 15px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #454651;
  margin-bottom: 40px;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-method-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary-color);
}

.contact-method-text a {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-method-text a:hover {
  color: var(--color-accent-red);
}

.contact-card-col {
  flex: 1.15;
  max-width: 620px;
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 30px;
}

.contact-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  color: var(--primary-color);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.96px;
  color: #454651;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  background-color: #F2F3FF;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-color);
  outline: none;
  transition: var(--transition);
}

.form-group input {
  height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #9A9ED0;
  background-color: #FFFFFF;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-contact-submit {
  background-color: var(--primary-color);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 12px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.96px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-contact-submit i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.btn-contact-submit:hover {
  background-color: #0c1954;
}

.btn-contact-submit:hover i {
  transform: translateX(4px);
}

@media screen and (max-width: 1024px) {
  /* ==================================================================== */
  /* How We Work Page - Methodology */
  /* ==================================================================== */

  .methodology-section {
    padding: 70px 0;
  }

  .methodology-grid {
    gap: 36px;
  }

  .methodology-title {
    font-size: 34px;
    line-height: 42px;
  }

  .methodology-step-card {
    max-width: 100%;
  }

  .methodology-step-card.step-even {
    margin-left: 30px;
  }

  /* ==================================================================== */
  /* Why Choose Section */
  /* ==================================================================== */

  .why-choose-section {
    padding: 70px 0;
  }

  .why-choose-header {
    margin-bottom: 40px;
  }

  .why-choose-title {
    font-size: 34px;
    line-height: 42px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-choose-card {
    padding: 24px 20px;
    gap: 16px;
  }

  /* ==================================================================== */
  /* What Students Get Section */
  /* ==================================================================== */

  .students-get-section {
    padding: 70px 0;
  }

  .students-get-grid {
    gap: 36px;
  }

  .students-get-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 28px;
  }

  .students-get-img-card img {
    min-height: 280px;
  }

  .guided-support-card {
    padding: 30px;
    gap: 30px;
    margin-top: 40px;
  }

  .guided-support-title {
    font-size: 20px;
    line-height: 26px;
  }

  .guided-support-quote {
    font-size: 15px;
    line-height: 24px;
  }

  /* ==================================================================== */
  /* Contact Page */
  /* ==================================================================== */

  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-container {
    gap: 36px;
  }

  .contact-info-title {
    font-size: 34px;
    line-height: 42px;
  }

  .contact-form-card {
    padding: 32px 28px;
  }
}

@media screen and (max-width: 768px) {
  /* ==================================================================== */
  /* How We Work Page - Methodology */
  /* ==================================================================== */

  .methodology-section {
    padding: 50px 0;
  }

  .methodology-header {
    margin-bottom: 36px;
  }

  .methodology-title {
    font-size: 28px;
    line-height: 36px;
  }

  .methodology-grid {
    flex-direction: column;
    gap: 36px;
  }

  .methodology-left {
    max-width: 100%;
    width: 100%;
    position: static;
  }

  .methodology-right {
    max-width: 100%;
    width: 100%;
  }

  .methodology-step-card.step-even {
    margin-left: 0;
  }

  .methodology-step-card {
    max-width: 100%;
  }

  /* ==================================================================== */
  /* Why Choose Section */
  /* ==================================================================== */

  .why-choose-section {
    padding: 50px 0;
  }

  .why-choose-header {
    margin-bottom: 30px;
  }

  .why-choose-title {
    font-size: 28px;
    line-height: 36px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-card {
    padding: 22px 18px;
  }

  /* ==================================================================== */
  /* What Students Get Section */
  /* ==================================================================== */

  .students-get-section {
    padding: 50px 0;
  }

  .students-get-grid {
    flex-direction: column-reverse;
    gap: 25px;
  }

  .students-get-left {
    max-width: 100%;
    width: 100%;
  }

  .students-get-right {
    max-width: 100%;
    width: 100%;
  }

  .students-get-title {
    font-size: 28px;
    line-height: 36px;
  }

  .guided-support-card {
    flex-direction: column;
    gap: 20px;
    padding: 26px 20px;
    margin-top: 36px;
  }

  .guided-support-left {
    max-width: 100%;
    width: 100%;
  }

  .guided-support-right {
    max-width: 100%;
    width: 100%;
  }

  .conversation-how-we-work .conversation-container {
    gap: 20px;
  }

  /* ==================================================================== */
  /* Contact Page */
  /* ==================================================================== */

  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-container {
    flex-direction: column;
    gap: 36px;
  }

  .contact-info-col {
    max-width: 100%;
    width: 100%;
    padding-top: 0;
  }

  .contact-card-col {
    max-width: 100%;
    width: 100%;
  }

  .contact-info-title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-method-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  /* ==================================================================== */
  /* How We Work Page - Methodology */
  /* ==================================================================== */

  .methodology-section {
    padding: 40px 0;
  }

  .methodology-title {
    font-size: 24px;
    line-height: 32px;
  }

  .methodology-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .methodology-step-card {
    padding: 16px 18px;
    border-radius: 14px;
    gap: 14px;
  }

  .methodology-step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
  }

  .methodology-step-content h3 {
    font-size: 16.5px;
    line-height: 22px;
  }

  .methodology-step-content p {
    font-size: 13px;
    line-height: 19px;
  }

  .methodology-play-btn {
    width: 56px;
    height: 56px;
  }

  /* ==================================================================== */
  /* Why Choose Section */
  /* ==================================================================== */

  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-title {
    font-size: 24px;
    line-height: 32px;
  }

  .why-choose-subtitle {
    font-size: 14px;
    line-height: 22px;
  }

  .why-choose-card {
    padding: 18px 16px;
    border-radius: 16px;
    gap: 14px;
  }

  .why-choose-icon {
    width: 50px;
    height: 50px;
  }

  .why-choose-name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .why-choose-desc {
    font-size: 13.5px;
    line-height: 20px;
  }

  /* ==================================================================== */
  /* What Students Get Section */
  /* ==================================================================== */

  .students-get-section {
    padding: 40px 0;
  }

  .students-get-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .students-get-list {
    gap: 18px;
  }

  .students-get-content h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .students-get-content p {
    font-size: 13.5px;
    line-height: 20px;
  }

  .guided-support-card {
    padding: 20px 16px;
    border-radius: 16px;
    margin-top: 28px;
  }

  .guided-support-title {
    font-size: 18px;
    line-height: 24px;
  }

  .guided-support-desc {
    font-size: 14px;
    line-height: 22px;
  }

  .guided-support-quote {
    font-size: 14px;
    line-height: 22px;
  }

  /* ==================================================================== */
  /* Contact Page */
  /* ==================================================================== */

  .contact-form-section {
    padding: 40px 0;
  }

  .contact-info-title {
    font-size: 24px;
    line-height: 32px;
  }

  .contact-info-desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 28px;
  }

  .contact-method-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .contact-method-text {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-form-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    gap: 16px;
  }

  .btn-contact-submit {
    width: 100%;
  }
}