:root {
  --nav-height: 64px;
  --brand-red: #A62025;
  --brand-yellow: #FFBF00;
  --brand-orange: #EE4036;
  --brand-gold: #BF9830;
  --brand-pale-red: #f4eded;
  --brand-gold-gradient: linear-gradient(90deg, #BF9830 0%, #FFBF00 52%, #BF9830 100%);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #17243a;
  background: #f8faf9;
  font-family: "Poppins", Arial, sans-serif;
}

.site-container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 32px;
}

button {
  border: 0;
}

main > section,
.site-footer {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

main > section.is-visible,
.site-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

button,
.site-header__login,
.site-header__mobile-login,
.hero-cta,
.floating-whatsapp {
  transition:
    color 180ms ease,
    background 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

button:not(:disabled):hover,
button:not(:disabled):focus-visible,
.site-header__login:hover,
.site-header__login:focus-visible,
.site-header__mobile-login:hover,
.site-header__mobile-login:focus-visible,
.hero-cta:hover,
.hero-cta:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

button:not(:disabled):active,
.site-header__login:active,
.site-header__mobile-login:active,
.hero-cta:active,
.floating-whatsapp:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  main > section,
  .site-footer,
  button,
  .site-header__login,
  .site-header__mobile-login,
  .hero-cta,
  .floating-whatsapp,
  .steps-section__media img,
  .steps-section__item-title,
  .about-who__track {
    transition: none;
  }

  .about-who__track {
    animation: none;
  }

  main > section,
  .site-footer {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--nav-height);
  background: #ffffff;
}

.site-header__brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: auto;
  padding: 0;
  line-height: 0;
  overflow: visible;
}

.site-header__brand img {
  display: block;
  width: 230px;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3.2vw, 82px);
  width: 100%;
  height: var(--nav-height);
  padding: 0 clamp(34px, 6.2vw, 170px) 0 250px;
  color: #ffffff;
  background: var(--brand-red);
}

.site-header__nav,
.site-header__actions {
  display: flex;
  align-items: center;
}

.site-header__nav {
  flex: 1;
  justify-content: center;
  gap: 40px;
}

.site-header a,
.site-header button {
  color: inherit;
  font: inherit;
}

.site-header__nav a {
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-header__nav a span {
  font-weight: inherit;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible,
.site-header__nav-toggle:hover,
.site-header__nav-toggle:focus-visible {
  color: var(--brand-yellow);
}

.site-header__nav-dropdown {
  position: relative;
  color: #ffffff;
}

.site-header__nav-dropdown summary {
  list-style: none;
}

.site-header__nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-header__nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-header__nav-toggle-link {
  color: inherit;
  text-decoration: none;
}

.site-header__nav-toggle-link:hover,
.site-header__nav-toggle-link:focus-visible {
  color: var(--brand-yellow);
}

.site-header__nav-toggle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 32px;
  margin-left: -4px;
  color: inherit;
  cursor: pointer;
}

.site-header__nav-toggle-arrow {
  font-size: 12px;
  transition: transform 180ms ease;
}

.site-header__nav-dropdown[open] .site-header__nav-toggle-arrow {
  transform: rotate(180deg);
}

.site-header__nav-dropdown:hover .site-header__nav-toggle-arrow,
.site-header__nav-dropdown:focus-within .site-header__nav-toggle-arrow {
  transform: rotate(180deg);
}

.site-header__nav-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  width: 238px;
  overflow: hidden;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2b40;
  transform: translateX(-50%);
}

.site-header__nav-dropdown:hover .site-header__nav-menu,
.site-header__nav-dropdown:focus-within .site-header__nav-menu {
  display: grid;
}

.site-header__nav-menu-group {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
}

.site-header__nav-menu-group + .site-header__nav-menu-group {
  border-top: 1px solid #dde4ee;
}

.site-header__nav-menu-group h3 {
  margin: 0 0 2px;
  color: #aeb4bf;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.site-header__nav-menu-group a {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-height: 30px;
  color: #1f2b40;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.site-header__nav-menu-group a:hover,
.site-header__nav-menu-group a:focus-visible {
  color: var(--brand-red);
}

.site-header__nav-menu-group img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(15%) sepia(83%) saturate(2893%) hue-rotate(343deg) brightness(93%) contrast(91%);
}

.site-header__icon-fallback {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-red);
  flex: 0 0 auto;
}

.site-header__country,
.site-header__language,
.site-header__login {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
}

.site-header .site-header__country {
  font-weight: 600;
}

.site-header .site-header__language {
  font-weight: 600;
}

.site-header .site-header__login {
  font-weight: 600;
}

.site-header__actions {
  gap: clamp(18px, 2vw, 48px);
}

.site-header__language {
  position: relative;
  color: #ffffff;
}

.site-header__language summary,
.site-header__mobile-language summary {
  list-style: none;
}

.site-header__language summary::-webkit-details-marker,
.site-header__mobile-language summary::-webkit-details-marker {
  display: none;
}

.site-header__language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header__language > .site-header__language-toggle {
  font-size: 16px;
}

.site-header__language-arrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-header__language[open] .site-header__language-arrow,
.site-header__mobile-language[open] .site-header__language-arrow {
  transform: rotate(180deg);
}

.site-header__language-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  right: -18px;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #dde4ee;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2b40;
}

.site-header__language-menu a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #1f2b40;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.site-header__language-menu a:hover,
.site-header__language-menu a:focus-visible,
.site-header__language-menu a.is-active {
  color: var(--brand-red);
  background: var(--brand-pale-red);
}

.site-header__country {
  position: relative;
  color: #ffffff;
}

.site-header__country summary {
  list-style: none;
}

.site-header__country summary::-webkit-details-marker {
  display: none;
}

.site-header__country-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
}

.site-header__flag-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}

.site-header__flag-ring img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header__country-arrow {
  display: inline-block;
  color: inherit;
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease;
}

.site-header__country[open] .site-header__country-arrow {
  transform: rotate(180deg);
}

.site-header__country-menu {
  position: absolute;
  z-index: 150;
  top: calc(100% + 18px);
  right: -20px;
  display: grid;
  width: 250px;
  overflow: hidden;
  border: 1px solid #dde4ee;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2b40;
}

.site-header__country-group {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.site-header__country-group + .site-header__country-group {
  border-top: 1px solid #dde4ee;
}

.site-header__country-group h3 {
  margin: 0 0 4px;
  color: #c4c8cf;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.site-header__country-option {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1f2b40;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-header__country-option:hover,
.site-header__country-option:focus-visible,
.site-header__country-option.is-active {
  color: var(--brand-red);
}

.site-header__country-option.is-muted,
.site-header__country-option:disabled {
  color: #aeb4bf;
  cursor: not-allowed;
  opacity: 0.48;
  pointer-events: none;
}

.site-header__country-option.is-muted .site-header__flag-ring,
.site-header__country-option:disabled .site-header__flag-ring {
  filter: grayscale(0.1);
  opacity: 0.65;
}

.site-header__flag {
  display: block;
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
}

.site-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 32px;
  min-height: 32px;
  padding: 0 20px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: transparent;
  font-size: 12px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
}

.site-header__mobile-menu {
  display: none;
  position: relative;
  z-index: 110;
}

.site-header__mobile-menu > summary {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.site-header__mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.site-header__mobile-menu > summary > img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-header__mobile-actions,
.site-header__mobile-menu nav {
  position: absolute;
  right: 0;
}

.site-header__mobile-actions {
  top: calc(100% + 15px);
  display: none;
}

.site-header__mobile-menu nav {
  top: calc(100% + 15px);
  display: grid;
  min-width: 210px;
  padding: 10px;
  border-radius: 8px;
  background: var(--brand-red);
}

.site-header__mobile-language,
.site-header__mobile-login {
  color: inherit;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.site-header__mobile-language {
  font-weight: 600;
}

.site-header__mobile-login {
  font-weight: 700;
}

.site-header .site-header__mobile-language {
  font-weight: 600;
}

.site-header .site-header__mobile-login {
  color: #ffffff;
  font-weight: 700;
}

.site-header__mobile-menu nav a {
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__mobile-nav-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header__mobile-nav-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}

.site-header__mobile-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-header__mobile-nav-link {
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.site-header__mobile-nav-link:focus-visible {
  outline: 3px solid rgba(255, 191, 0, 0.32);
  outline-offset: 4px;
}

.site-header__mobile-nav-dropdown summary span[aria-hidden="true"] {
  font-size: 11px;
  transition: transform 180ms ease;
}

.site-header__mobile-nav-dropdown[open] summary span[aria-hidden="true"] {
  transform: rotate(180deg);
}

.site-header__mobile-nav-menu {
  display: grid;
  gap: 6px;
  padding: 0 14px 14px 28px;
}

.site-header__mobile-menu nav .site-header__mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
}

.site-header__mobile-nav-menu img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(15%) sepia(83%) saturate(2893%) hue-rotate(343deg) brightness(93%) contrast(91%);
}

.site-header__mobile-menu nav a:hover,
.site-header__mobile-menu nav a:focus-visible {
  color: var(--brand-yellow);
}

.hero-starter {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: calc(100vh - var(--nav-height));
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  background-image: url("Asset/Home_Images/Hero_1_bg.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide[hidden] {
  display: block;
}

.hero-slide--two {
  background-image: url("Asset/Home_Images/Hero_2_bg.jpeg");
}

.hero-slide--three {
  background-image: url("Asset/Home_Images/Hero_3_bg.jpeg");
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding-block: 96px 84px;
}

.hero-inner.site-container {
  width: min(100%, 1560px);
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.hero-copy {
  width: min(100%, 700px);
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-inner h1,
.hero-inner h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: clamp(52px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

@media (min-width: 981px) {
  .hero-slide--one .hero-copy {
    width: min(100%, 900px);
  }

  .hero-slide--one h1 {
    white-space: nowrap;
  }
}

.hero-description {
  max-width: 620px;
  margin: 22px 0 0;
  color: #17243a;
  line-height: 1.55;
}

.hero-description--lead {
  font-size: 14px;
  font-weight: 500;
}

.hero-description--support {
  font-size: 14px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 27px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand-red) 0%, #EE4036 58%, #FFBF00 100%);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: #EE4036;
  transform: translateY(-1px);
}

.hero-slider {
  position: absolute;
  left: 50%;
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: translateX(-50%);
}

.hero-slider button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(166, 32, 37, 0.24);
  cursor: pointer;
}

.hero-slider button.is-active {
  width: 42px;
  background: var(--brand-red);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quick-actions {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  padding: 0 clamp(32px, 4.8vw, 120px) 28px;
  background: transparent;
}

.quick-actions__inner {
  width: min(100%, 1420px);
  min-height: 280px;
  margin-inline: auto;
  padding: 18px 32px 20px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  background: #ffffff;
}

.quick-actions__top,
.quick-actions__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.quick-actions__top {
  align-items: center;
  margin-bottom: 20px;
}

.quick-actions__tabs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  padding: 5px;
  border: 0;
  border-radius: 999px;
  background: #f7f8fa;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.quick-actions[data-mode="services"] .quick-actions__tabs {
  width: max-content;
  max-width: 100%;
}

.quick-actions__tabs::-webkit-scrollbar {
  display: none;
}

.quick-actions__tab {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #000000;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.quick-actions[data-mode="plans"] .quick-actions__tab[data-quick-mode="plans"],
.quick-actions[data-mode="services"] .quick-actions__tab[data-quick-mode="services"] {
  display: inline-flex;
}

.quick-actions__tab img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  flex: 0 0 auto;
}

.quick-actions__tab.is-active {
  border-color: transparent;
  background: var(--brand-red);
  color: #ffffff;
}

.quick-actions__tab.is-active img {
  filter: brightness(0) invert(1);
}

.quick-actions__switch {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 22px;
  padding-top: 0;
  color: #9b9b9b;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.quick-actions__switch--mobile {
  display: none;
}

.quick-actions__switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.quick-actions__switch button.is-active {
  color: #000000;
  font-weight: 500;
}

.quick-actions__switch .quick-actions__switch-toggle {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 21px;
  min-height: 21px;
  border: 0;
  border-radius: 999px;
  background: #f0efec;
}

.quick-actions__switch .quick-actions__switch-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--brand-red);
  transform: translateY(-50%);
  transition: left 180ms ease;
}

.quick-actions[data-mode="services"] .quick-actions__switch-toggle::before {
  left: 18px;
}

.quick-actions__body {
  align-items: center;
}

.quick-actions__content {
  flex: 1 1 auto;
  min-width: 0;
}

.quick-actions__panel {
  animation: quickPanelFade 180ms ease both;
}

.quick-actions__label {
  margin: 0 0 12px;
  color: #8f939a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.quick-actions__panel-heading {
  display: block;
}

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

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

.quick-actions__plans--packages .quick-actions__plan-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.quick-actions__plan-card {
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f7f8fa;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.quick-actions__plan-card:hover,
.quick-actions__plan-card.is-selected {
  border-color: var(--brand-red);
  background: #f4eded;
}

.quick-actions__plan-card:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.quick-actions__plan-card h3,
.quick-actions__panel--service h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.quick-actions__price {
  margin: 6px 0 8px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.quick-actions__plan-card p:not(.quick-actions__price),
.quick-actions__panel--service p {
  margin: 0;
  color: #8f939a;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.quick-actions__note {
  margin: 12px 0 0;
  color: #8f939a;
  font-size: 11px;
  font-weight: 400;
}

.quick-actions__note button,
.quick-actions__note a {
  padding: 0;
  background: transparent;
  color: #0073b8;
  font: inherit;
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.quick-actions__note button:hover,
.quick-actions__note button:focus-visible,
.quick-actions__note a:hover,
.quick-actions__note a:focus-visible,
.quick-actions__switch button:hover,
.quick-actions__switch button:focus-visible {
  transform: none;
}

.quick-actions__panel--service {
  max-width: 1120px;
  padding-block: 18px 12px;
}

.quick-actions__panel--service h3 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1;
}

.quick-actions__service-title {
  margin-bottom: 4px !important;
  color: #000000 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.quick-actions__panel--service p:not(.quick-actions__service-title) {
  color: #000000;
  font-size: 15px;
  line-height: 1.28;
}

.quick-actions__cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 136px;
  min-height: 38px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red) 0%, #EE4036 58%, #FFBF00 100%);
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.quick-actions__cta span[aria-hidden="true"] {
  font-size: 24px;
  line-height: 0;
}

@keyframes quickPanelFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.metrics-section {
  display: flex;
  align-items: center;
  min-height: 196px;
  background:
    #a62025
    url("Asset/Home_Images/Metric_bg.jpg") center / cover no-repeat;
}

.metrics-section__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  width: min(100%, 1560px);
  margin-inline: auto;
  padding: 42px clamp(40px, 3.8vw, 64px);
  gap: 34px;
}

.metrics-section__item {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.metrics-section__number {
  display: inline-block;
  color: #ffffff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metrics-section__number--fast {
  background-image: linear-gradient(90deg, #ffffff 0%, #ffe69c 100%);
}

.metrics-section__number--certified {
  background-image: linear-gradient(90deg, #ffe69c 0%, #ffbf00 100%);
}

.metrics-section__number--since {
  background-image: linear-gradient(90deg, #ffbf00 0%, #f5771e 100%);
}

.metrics-section__number--families {
  background-image: linear-gradient(90deg, #f5771e 0%, #ff4809 100%);
}

.metrics-section__label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.steps-section {
  background: #ffffff;
  padding-block: 118px 124px;
}

.steps-section__inner {
  display: grid;
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
  gap: 58px;
}

.steps-section__heading p {
  margin: 0 0 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.steps-section__heading h2 {
  max-width: 920px;
  margin: 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.steps-section__heading h2 span {
  display: block;
  color: var(--brand-red);
}

.steps-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(520px, 0.92fr);
  align-items: start;
  gap: clamp(90px, 7.2vw, 130px);
}

.steps-section__media {
  align-self: start;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f8fa;
  aspect-ratio: 1.38 / 1;
}

.steps-section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 520ms ease;
}

.steps-section__media img.is-changing {
  opacity: 0;
}

.steps-section__list {
  display: grid;
}

.steps-section__item {
  display: grid;
  grid-template-rows: auto 0fr;
  row-gap: 0;
  width: 100%;
  padding: 42px 0 38px 20px;
  border-top: 1px solid #dde4ee;
  border-bottom: 0;
  background: transparent;
  color: #c4c8cf;
  font-family: "Poppins", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    grid-template-rows 340ms ease,
    row-gap 340ms ease;
}

.steps-section__item:last-child {
  border-bottom: 1px solid #dde4ee;
}

.steps-section__item-title {
  display: inline-block;
  color: inherit;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.steps-section__item-copy {
  display: block;
  max-width: 680px;
  max-height: 0;
  min-height: 0;
  overflow: hidden;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  transition:
    max-height 340ms ease,
    opacity 220ms ease;
}

.steps-section__item:hover,
.steps-section__item:focus-visible {
  grid-template-rows: auto 1fr;
  row-gap: 18px;
  color: var(--brand-red);
}

.steps-section__item:hover .steps-section__item-copy,
.steps-section__item:focus-visible .steps-section__item-copy {
  max-height: 180px;
  opacity: 1;
}

.will-intro {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 88px 32px 104px;
  background-color: var(--brand-red);
  background-image: url("Asset/Home_Images/Will_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.will-intro__content {
  width: min(100%, 1240px);
}

.will-intro h2 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.will-intro h2 span {
  color: var(--brand-yellow);
}

.will-intro p {
  max-width: 1180px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.will-intro p + p {
  margin-top: 22px;
}

.importance-section {
  overflow: hidden;
  background: #f7f8fa;
  padding-block: 118px 124px;
}

.importance-section__heading {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 32px;
  text-align: center;
}

.importance-section__heading h2 {
  margin: 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.importance-section__heading h2 span {
  color: var(--brand-red);
}

.importance-section__heading p {
  max-width: 1040px;
  margin: 28px auto 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.importance-slider {
  position: relative;
  margin-top: 88px;
}

.importance-slider__viewport {
  display: grid;
  grid-auto-columns: clamp(360px, 29vw, 520px);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(32px, calc((100vw - 1560px) / 2 + 64px));
  scroll-snap-type: none;
  padding-inline: max(32px, calc((100vw - 1560px) / 2 + 64px));
  padding-bottom: 8px;
  scrollbar-width: none;
}

.importance-slider__viewport::-webkit-scrollbar {
  display: none;
}

.importance-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(221, 228, 238, 0.42);
  border-radius: 16px;
  background: #ffffff;
  scroll-snap-align: start;
}

.importance-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}

.importance-card__copy {
  display: grid;
  align-content: start;
  min-height: 132px;
  padding: 26px 28px 30px;
  text-align: center;
}

.importance-card h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.importance-card p {
  margin: 12px auto 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.32;
}

.importance-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.importance-slider__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(166, 32, 37, 0.24);
  cursor: pointer;
}

.importance-slider__dots button.is-active {
  width: 42px;
  background: var(--brand-red);
}

.why-choose-section {
  background: #ffffff;
  padding-block: 118px 124px;
}

.why-choose-section__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.why-choose-section__heading h2 {
  margin: 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.why-choose-section__heading h2 span {
  color: var(--brand-red);
}

.why-choose-section__heading p {
  max-width: 1420px;
  margin: 28px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.why-choose-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(88px, 8.4vw, 150px);
  row-gap: 96px;
  margin-top: 96px;
}

.why-choose-item {
  display: grid;
  align-content: start;
  min-width: 0;
}

.why-choose-item img {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(78%);
  opacity: 0.76;
}

.why-choose-item h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.why-choose-item p {
  margin: 16px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.32;
}

.testimonial-section {
  overflow: hidden;
  background: #ffffff;
  padding-block: 118px 124px;
}

.testimonial-section__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.testimonial-section__heading h2 {
  margin: 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.testimonial-section__heading h2 span {
  display: block;
  color: var(--brand-red);
}

.testimonial-section__heading p {
  max-width: 1100px;
  margin: 34px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-section__viewport {
  display: grid;
  grid-auto-columns: minmax(440px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  margin-top: 88px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(32px, calc((100vw - 1560px) / 2 + 64px));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.testimonial-section__viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 34px 34px 30px;
  border-radius: 15px;
  background: #f7f8fa;
}

.testimonial-card__stars {
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
}

.testimonial-card p {
  margin: 18px 0 38px;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.32;
}

.testimonial-card h3 {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: #c4c8cf;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.faq-section {
  background: #ffffff;
  padding-block: 176px 124px;
}

.faq-section__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.faq-section__heading {
  margin-bottom: 78px;
}

.faq-section__heading h1,
.faq-section__heading h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.faq-section__heading p {
  margin: 14px 0 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
}

.faq-section__list {
  border-top: 1px solid #dde4ee;
}

.faq-item {
  border-bottom: 1px solid #dde4ee;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 118px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.16;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: #f0efec;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #000000;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item__answer {
  max-width: 1080px;
  padding: 0 96px 38px 0;
}

.faq-item__answer p {
  margin: 0;
  color: #6f737b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.48;
}

.faq-item__answer p + p {
  margin-top: 12px;
}

.faq-section__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 58px;
  padding: 43px 51px;
  border-radius: 15px;
  background: #f7f8fa;
}

.faq-section__cta h3 {
  margin: 0;
  color: #000000;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.16;
}

.faq-section__cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #6f737b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.faq-section__cta-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.faq-section__cta-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 139px;
  min-height: 51px;
  padding: 0 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.faq-section__cta-button--red {
  background: var(--brand-red);
  color: #ffffff;
}

.resources-page .faq-section {
  padding-block: 136px 124px;
}

.resources-page .faq-section__heading {
  margin-bottom: 66px;
}

.resources-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 34px;
}

.resources-faq-tab {
  position: relative;
  padding: 0 0 17px;
  background: transparent;
  color: #8f939a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

.resources-faq-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-red);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.resources-faq-tab:hover,
.resources-faq-tab:focus-visible,
.resources-faq-tab.is-active {
  color: var(--brand-red);
  transform: none;
}

.resources-faq-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.resources-faq-group[hidden] {
  display: none;
}

.platform-policy-section {
  padding: 112px 0 124px;
  background: #ffffff;
}

.platform-policy-section__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.platform-policy-section__heading {
  text-align: center;
}

.platform-policy-section__heading h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.platform-policy-section__heading p {
  margin: 24px 0 0;
  color: #17243a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.platform-policy-section__actions {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  gap: 28px;
  margin-top: 72px;
  margin-bottom: 72px;
  max-width: 100%;
  justify-content: center;
  margin-inline: auto;
}

.platform-policy-button {
  width: 280px;
  min-height: 65px;
  box-sizing: border-box;
  padding: 14px 26px;
  border: 0;
  border-radius: 15px;
  background: #f7f8fa;
  color: var(--brand-red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
}

.platform-policy-button--link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.platform-policy-button:hover,
.platform-policy-button:focus-visible {
  background: var(--brand-red);
  color: #ffffff;
}

body.policy-drawer-open {
  overflow: hidden;
}

.policy-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.policy-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.policy-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(23, 36, 58, 0.58);
  opacity: 0;
  cursor: default;
  transition: opacity 260ms ease;
}

.policy-drawer.is-open .policy-drawer__backdrop {
  opacity: 1;
}

.policy-drawer__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  transform: translateY(100%);
  transition: transform 320ms ease;
}

.policy-drawer.is-open .policy-drawer__panel {
  transform: translateY(0);
}

.policy-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  width: min(100%, 1560px);
  margin-inline: auto;
  padding: 42px clamp(40px, 3.8vw, 64px) 28px;
}

.policy-drawer__header h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.policy-drawer__header p {
  margin: 12px 0 0;
  color: #6f737b;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.policy-drawer__close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0 0 3px;
  border: 1px solid #dde4ee;
  border-radius: 999px;
  background: #ffffff;
  color: #17243a;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.policy-drawer__close:hover,
.policy-drawer__close:focus-visible {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #ffffff;
}

.policy-drawer__content {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding: 0 clamp(40px, 3.8vw, 64px) 42px;
}

.policy-drawer__document {
  display: block;
  width: 100%;
  height: min(62vh, 720px);
  padding: 30px;
  overflow-y: auto;
  border: 1px solid #dde4ee;
  border-radius: 15px;
  background: #f8faf9;
  color: #17243a;
}

.policy-drawer__document h3 {
  margin: 26px 0 10px;
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-drawer__document h3:first-child {
  margin-top: 0;
}

.policy-drawer__document p {
  margin: 0 0 12px;
  color: #3f4654;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.blog-section {
  background: #f8faf9;
  padding-block: 132px 124px;
}

.blog-section__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.blog-section__heading {
  margin-bottom: 96px;
  text-align: center;
}

.blog-section__heading h1 {
  margin: 0;
  color: #a62025;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-section__heading p {
  margin: 16px 0 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.blog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 36px;
}

.blog-card {
  min-width: 0;
}

.blog-card__image-link {
  display: block;
  aspect-ratio: 1 / 0.94;
  overflow: hidden;
  border-radius: 32px;
  background: #f7f8fa;
  text-decoration: none;
}

.blog-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-card__image-link:hover img,
.blog-card__image-link:focus-visible img {
  transform: scale(1.035);
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #777b82;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.blog-card__meta span[aria-hidden="true"] {
  color: var(--brand-yellow);
  font-weight: 700;
}

.blog-card h2 {
  margin: 12px 0 0;
  color: #000000;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: 0;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
  color: var(--brand-red);
}

.blog-card[hidden] {
  display: none;
}

.blog-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 68px;
}

.blog-section__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 48px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--brand-red);
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.blog-section__load-more[hidden] {
  display: none;
}

.blog-article {
  background: #f8faf9;
  padding-block: 112px 0;
}

.blog-article__header {
  width: min(100%, 900px);
  margin-inline: auto;
  padding-inline: 32px;
  text-align: center;
}

.blog-article__category,
.blog-article__header time {
  display: block;
  margin: 0;
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article__header h1 {
  margin: 36px 0 34px;
  color: #000000;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-article__hero {
  width: min(100% - 48px, 1560px);
  margin: 68px auto 0;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 1560 / 720;
  background: #f7f8fa;
}

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

.blog-article__content {
  width: min(100% - 48px, 720px);
  margin: 138px auto 0;
}

.blog-article__content p {
  margin: 0;
  color: #777b82;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
}

.blog-article__content p + p {
  margin-top: 24px;
}

.blog-article__table-wrap {
  width: 100%;
  margin: 36px 0;
  overflow-x: auto;
}

.blog-article__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: #17243a;
  font-size: 14px;
  line-height: 1.5;
}

.blog-article__table th,
.blog-article__table td {
  padding: 14px 16px;
  border: 1px solid #dde4ee;
  text-align: left;
  vertical-align: top;
}

.blog-article__table th {
  background: #f4eded;
  color: #000000;
  font-weight: 600;
}

.blog-article__table td {
  background: #ffffff;
}

.blog-article__table p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.blog-article__table p + p {
  margin-top: 10px;
}

.blog-article__inline-image {
  margin: 36px 0;
}

.blog-article__inline-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.blog-article__inline-image figcaption {
  margin-top: 10px;
  color: #777b82;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.blog-article__lead {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.18;
}

.blog-article__content h2 {
  margin: 86px 0 34px;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-read-more {
  background: #f8faf9;
  padding-block: 124px;
}

.article-read-more__inner {
  width: min(100%, 1560px);
  margin-inline: auto;
  padding-inline: clamp(40px, 3.8vw, 64px);
}

.article-read-more__heading {
  margin-bottom: 58px;
  text-align: center;
}

.article-read-more__heading h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.article-read-more__heading p {
  margin: 12px 0 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.article-read-more__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  width: min(100%, 1040px);
  margin-inline: auto;
}

.contact-page {
  background: #ffffff;
}

.about-page {
  background: #ffffff;
}

.partnership-page {
  background: #ffffff;
}

.partnership-hero {
  display: grid;
  min-height: 480px;
  background: #ffffff;
  text-align: center;
}

.partnership-hero__inner {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding-top: 72px;
  padding-bottom: 72px;
}

.partnership-hero h1 {
  margin: 0;
  color: #000000;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.partnership-hero h1 span {
  color: var(--brand-red);
}

.partnership-hero p {
  max-width: 1120px;
  margin: 28px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.partnership-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 58px;
  padding: 14px 42px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #c90023 0%, #f21d26 56%, #ffbf00 100%);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.partnership-hero__cta:hover,
.partnership-hero__cta:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.partnership-hero__cta:active {
  transform: translateY(0);
}

.partnership-opportunities {
  display: grid;
  min-height: 400px;
  background: var(--brand-red) url("Asset/Partnership_Images/P_2_bg.jpg") center / cover no-repeat;
  text-align: center;
}

.partnership-opportunities__inner {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding-top: 72px;
  padding-bottom: 72px;
}

.partnership-opportunities h2 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.partnership-opportunities h2 span {
  color: var(--brand-yellow);
}

.partnership-opportunities p {
  max-width: 1120px;
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.partnership-programs {
  padding: 96px 32px 124px;
  background: #ffffff;
}

.partnership-programs__inner {
  width: min(100%, 1400px);
  margin-inline: auto;
}

.partnership-programs__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1400px);
  min-height: 50px;
  margin-inline: auto;
  padding: 4px;
  border-radius: 999px;
  background: #f4f4f4;
}

.partnership-programs__tab {
  min-width: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: #000000;
  background: transparent;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.partnership-programs__tab.is-active {
  color: #ffffff;
  background: #c90023;
}

.partnership-programs__tab:focus-visible {
  outline: 3px solid rgba(255, 191, 0, 0.85);
  outline-offset: 2px;
}

.partnership-programs__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 500px;
  margin-top: 84px;
  overflow: hidden;
  border-radius: 16px;
  background: #f7f8fa;
}

.partnership-programs__panel[hidden] {
  display: none;
}

.partnership-programs__image {
  min-height: 500px;
  padding: 16px;
}

.partnership-programs__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.partnership-programs__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 58px clamp(42px, 5vw, 76px) 52px;
}

.partnership-programs__content h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.partnership-programs__copy {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.partnership-programs__copy p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.partnership-programs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 38px;
}

.partnership-programs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 12px 30px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.partnership-programs__button.is-primary,
.partnership-programs__button.is-login {
  background: linear-gradient(90deg, #c90023 0%, #f21d26 56%, #ffbf00 100%);
}

.partnership-programs__button.is-secondary {
  background: var(--brand-red);
}

.partnership-programs__button.is-muted {
  color: #ffffff;
  background: #bfc1c5;
  cursor: pointer;
  opacity: 1;
}

.partnership-programs__button.is-muted:disabled {
  cursor: not-allowed;
}

.partnership-programs__button:not(:disabled):hover,
.partnership-programs__button:not(:disabled):focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.partnership-programs__button:not(:disabled):active {
  transform: translateY(0);
}

body.partnership-drawer-open {
  overflow: hidden;
}

.partnership-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}

.partnership-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.partnership-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(23, 36, 58, 0.62);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.partnership-drawer.is-open .partnership-drawer__backdrop {
  opacity: 1;
}

.partnership-drawer__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  outline: none;
  transform: translateY(100%);
  transition: transform 280ms ease;
}

.partnership-drawer.is-open .partnership-drawer__panel {
  transform: translateY(0);
}

.partnership-drawer__inner {
  position: relative;
  width: min(calc(100% - 96px), 1400px);
  margin: 48px auto;
  padding: 62px 48px 72px;
  border-radius: 16px;
  background: #f7f8fa;
}

.partnership-drawer__close {
  position: absolute;
  top: 28px;
  right: 34px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #dde4ee;
  border-radius: 50%;
  color: #17243a;
  background: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.partnership-drawer__heading {
  padding-right: 72px;
}

.partnership-drawer__heading h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.partnership-drawer__heading p {
  max-width: 1220px;
  margin: 20px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.partnership-drawer__professions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 48px;
  margin-top: 58px;
}

.partnership-profession {
  min-width: 0;
}

.partnership-profession img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.partnership-profession h3 {
  margin: 26px 0 0;
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.partnership-profession p {
  max-width: 260px;
  margin: 10px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.partnership-drawer__content[hidden] {
  display: none;
}

.partnership-reseller-programs {
  margin-top: 76px;
  padding: 58px 62px 68px;
  border-radius: 16px;
  background: #f4f4f4;
}

.partnership-reseller-programs__heading h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
}

.partnership-reseller-programs__heading p {
  max-width: 1160px;
  margin: 14px 0 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.45;
}

.partnership-reseller-programs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.partnership-reseller-card {
  min-width: 0;
  padding: 48px 44px 46px;
  border-radius: 16px;
  background: #ffffff;
}

.partnership-reseller-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(110deg, #c90023 0%, #f21d26 52%, #ffbf00 100%) border-box;
}

.partnership-reseller-card h4 {
  margin: 0;
  color: #000000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
}

.partnership-reseller-card__subtitle {
  min-height: 24px;
  margin: 10px 0 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.35;
}

.partnership-reseller-card__price {
  margin: 22px 0 16px;
  color: #b60024;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.partnership-reseller-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: #d60000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.partnership-reseller-card--featured .partnership-reseller-card__button {
  background: linear-gradient(90deg, #c90023 0%, #f21d26 56%, #ffbf00 100%);
}

.partnership-reseller-card__button:hover,
.partnership-reseller-card__button:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.partnership-reseller-card__button:active {
  transform: translateY(0);
}

.partnership-reseller-card h5 {
  margin: 24px 0 0;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.partnership-reseller-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
  margin-top: 26px;
}

.partnership-reseller-card__details h6 {
  margin: 0;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.partnership-reseller-card__details p {
  display: flex;
  gap: 7px;
  margin: 7px 0 0;
  color: #55c215;
  font-size: 14px;
  line-height: 1.3;
}

.partnership-reseller-card__details p span {
  color: #000000;
}

.partnership-detail__heading {
  padding-right: 72px;
}

.partnership-detail__heading h2,
.partnership-detail__section > h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.partnership-detail__heading p,
.partnership-detail__section > p,
.partnership-detail article p {
  margin: 14px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.partnership-detail__icon-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.partnership-detail__icon-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.partnership-detail__icon-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  padding: 30px 22px;
  border-radius: 16px;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partnership-detail__icon-card img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.partnership-detail__icon-card h3,
.partnership-detail__feature-grid h3,
.partnership-detail__text-grid h3,
.partnership-detail__process h3 {
  margin: 22px 0 0;
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.partnership-detail__icon-card p {
  max-width: 250px;
  margin-top: 10px;
}

.partnership-detail__icon-grid--plain .partnership-detail__icon-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.partnership-detail__icon-grid--plain .partnership-detail__icon-card img {
  width: 52px;
  height: 52px;
}

.partnership-detail__icon-grid--plain .partnership-detail__icon-card h3 {
  margin-top: 16px;
}

.partnership-detail__divider {
  width: min(100%, 540px);
  margin: 62px auto;
  border-top: 1px solid #d7dbe1;
}

.partnership-detail__section > p {
  max-width: 1240px;
}

.partnership-detail__text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 72px;
  margin-top: 42px;
}

.partnership-detail__text-grid article,
.partnership-detail__feature-grid article,
.partnership-detail__process article {
  min-width: 0;
}

.partnership-detail__text-grid h3,
.partnership-detail__feature-grid h3 {
  margin-top: 0;
}

.partnership-detail__text-grid p,
.partnership-detail__feature-grid p {
  margin-top: 8px;
}

.partnership-detail__subheading {
  margin: 34px 0 0;
  color: #000000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.partnership-detail__feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.partnership-detail__feature-grid article {
  min-height: 112px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
}

.partnership-detail__process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-top: 38px;
}

.partnership-detail__process article {
  position: relative;
  display: grid;
  grid-template-rows: 88px 28px minmax(64px, auto);
  gap: 12px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.partnership-detail__process article:not(:last-child)::after {
  position: absolute;
  top: 38px;
  right: -30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  transform: rotate(45deg);
}

.partnership-detail__process img {
  display: block;
  width: 88px;
  height: 88px;
  margin-inline: 0;
  border-radius: 50%;
  justify-self: center;
  object-fit: contain;
}

.partnership-detail__process h3 {
  width: 100%;
  align-self: center;
  justify-self: stretch;
  margin: 0;
  text-align: center;
}

.partnership-detail__process p {
  width: 100%;
  max-width: 240px;
  margin: 0;
  justify-self: center;
  text-align: center;
}

.partnership-detail__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 12px 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #c90023 0%, #f21d26 56%, #ffbf00 100%);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.partnership-detail__cta a:hover,
.partnership-detail__cta a:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.partnership-detail__cta a:active {
  transform: translateY(0);
}

.partnership-cspm__learn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.partnership-cspm__learn-grid article {
  min-width: 0;
  padding: 24px 28px;
  border-radius: 16px;
  background: #ffffff;
}

.partnership-cspm__learn-grid h3,
.partnership-cspm__audience-grid h3,
.partnership-cspm__course-grid h3,
.partnership-cspm__process h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.partnership-cspm__learn-grid h4,
.partnership-cspm__process h4 {
  margin: 6px 0 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.partnership-cspm__learn-grid p,
.partnership-cspm__audience-grid p,
.partnership-cspm__course-grid p,
.partnership-cspm__process p {
  margin: 8px 0 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.partnership-cspm__audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 64px;
  margin-top: 42px;
}

.partnership-cspm__audience-grid article {
  min-width: 0;
}

.partnership-cspm__audience-grid img {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  object-fit: contain;
}

.partnership-cspm__course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 72px;
  margin-top: 42px;
}

.partnership-cspm__course-grid article {
  display: flex;
  min-width: 0;
  gap: 14px;
  align-items: flex-start;
}

.partnership-cspm__course-grid article > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #56c86f;
  border-radius: 50%;
  color: #2ab653;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.partnership-cspm__course-grid h3 {
  margin-top: 1px;
}

.partnership-cspm__process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px;
  margin-top: 42px;
}

.partnership-cspm__process article {
  position: relative;
  min-width: 0;
  text-align: center;
}

.partnership-cspm__process article:not(:last-child)::after {
  position: absolute;
  top: 51px;
  right: -42px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  content: "";
  transform: rotate(45deg);
}

.partnership-cspm__process img {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.partnership-cspm__process h4 {
  margin-top: 8px;
}

.partnership-detail .partnership-cspm__process p {
  max-width: 310px;
  margin: 8px auto 0;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--nav-height));
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("Asset/About_Us_Images/Cover_bg.jpg") center / cover no-repeat;
  text-align: center;
}

.about-hero__content {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 820px;
  margin: 28px 0 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.about-who {
  padding: 112px 0 120px;
  overflow: hidden;
  background: #c9001c url("Asset/About_Us_Images/2_Who_we_bg.jpg") center / cover no-repeat;
  color: #ffffff;
}

.about-who__inner,
.about-who__copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-who__copy {
  width: min(100%, 1180px);
}

.about-who h2 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-who h2 span {
  color: var(--brand-yellow);
}

.about-who__copy p {
  max-width: 1140px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.about-who__copy p:first-of-type {
  margin-top: 28px;
}

.about-who__carousel {
  --about-gallery-gap: 14px;
  position: relative;
  width: 100vw;
  margin-top: 62px;
  margin-inline: calc(50% - 50vw);
  padding: 10px 0 54px;
  overflow: hidden;
  outline-offset: -4px;
}

.about-who__track {
  display: flex;
  align-items: flex-start;
  gap: var(--about-gallery-gap);
  width: max-content;
  opacity: 0;
  transform: translate3d(var(--about-loop-start, 0), 0, 0);
  will-change: transform;
}

.about-who__track.is-loop-ready {
  opacity: 1;
  animation: about-who-loop 34s linear infinite;
}

.about-who__carousel:hover .about-who__track.is-loop-ready,
.about-who__carousel:focus .about-who__track.is-loop-ready {
  animation-play-state: paused;
}

.about-who__slide {
  flex: 0 0 clamp(250px, 24vw, 410px);
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  background: #ffffff;
}

.about-who__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-who__track > .about-who__slide:nth-child(5n + 1) {
  transform: translateY(42px) rotate(1.4deg);
}

.about-who__track > .about-who__slide:nth-child(5n + 2) {
  transform: translateY(18px) rotate(0.7deg);
}

.about-who__track > .about-who__slide:nth-child(5n + 3) {
  transform: translateY(0);
}

.about-who__track > .about-who__slide:nth-child(5n + 4) {
  transform: translateY(18px) rotate(-0.7deg);
}

.about-who__track > .about-who__slide:nth-child(5n + 5) {
  transform: translateY(42px) rotate(-1.4deg);
}

@keyframes about-who-loop {
  from {
    transform: translate3d(var(--about-loop-start), 0, 0);
  }

  to {
    transform: translate3d(var(--about-loop-end), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-who__track.is-loop-ready {
    animation: none;
  }
}

.about-guidance {
  padding: 116px 0 124px;
  background: #ffffff;
}

.about-guidance__inner {
  display: grid;
  gap: 58px;
}

.about-guidance__heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-guidance__heading h2 {
  margin: 0;
  color: #000000;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-guidance__heading h2 span {
  color: var(--brand-red);
}

.about-guidance__heading p {
  max-width: 900px;
  margin: 24px 0 0;
  color: #17243a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.about-guidance__featured,
.about-guidance__values {
  display: grid;
  gap: 34px;
}

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

.about-guidance__values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.about-guidance-card {
  min-width: 0;
}

.about-guidance-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 15px;
  object-fit: cover;
}

.about-guidance__values .about-guidance-card img {
  aspect-ratio: 1 / 1;
}

.about-guidance-card__copy {
  padding: 24px 14px 0;
}

.about-guidance-card h3 {
  margin: 0;
  color: var(--brand-red);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.about-guidance-card p {
  margin: 10px 0 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
}

.about-partner {
  padding: 76px 0 72px;
  background: #f2f2f2;
}

.about-partner__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-partner h2 {
  margin: 0;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.about-partner img {
  display: block;
  width: min(100%, 300px);
  height: 100px;
  margin-top: 34px;
  object-fit: contain;
}

.about-platform {
  padding: 76px 0 72px;
  background: #ffffff;
}

.about-platform__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-platform h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-platform p {
  margin: 14px 0 0;
  color: #5f5f5f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.about-platform__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 8vw, 120px);
  width: min(100%, 760px);
  margin-top: 38px;
}

.about-platform__logos img {
  display: block;
  width: min(100%, 260px);
  height: 96px;
  object-fit: contain;
}

.about-platform__logos img:first-child {
  width: min(100%, 260px);
}

.about-platform__logos img:last-child {
  width: min(100%, 220px);
}

.about-accolades {
  padding: 124px 0;
  background: #ffffff;
}

.about-accolades__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(72px, 8vw, 148px);
}

.about-accolades__copy h2 {
  max-width: 550px;
  margin: 0 auto;
  color: var(--brand-red);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-accolades__copy {
  text-align: center;
}

.about-accolades__copy h2.is-compact-title {
  font-size: 43px;
}

.about-accolades__copy p {
  max-width: 455px;
  margin: 28px auto 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.24;
}

.about-accolades__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 92px 64px;
}

.about-accolades__logo {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 116px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.24;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.about-accolades__logo:hover,
.about-accolades__logo:focus-visible,
.about-accolades__logo.is-active {
  opacity: 1;
}

.about-accolades__logo.is-active {
  transform: scale(1.03);
}

.about-accolades__logo img {
  display: block;
  width: min(100%, 170px);
  max-height: 116px;
  object-fit: contain;
}

.contact-hero {
  padding: 94px 0 52px;
  background: #ffffff;
  text-align: center;
}

.contact-hero__inner {
  display: grid;
  justify-items: center;
}

.contact-hero h1 {
  margin: 0;
  color: var(--brand-red);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-hero p {
  max-width: 980px;
  margin: 22px 0 0;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-details {
  padding: 38px 0 96px;
  background: #ffffff;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100%, 1350px);
}

.contact-info-card:nth-child(4) {
  grid-column: 1 / 2;
  transform: translateX(calc(50% + 16px));
}

.contact-info-card:nth-child(5) {
  grid-column: 2 / 3;
  transform: translateX(calc(50% + 16px));
}

.contact-info-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 228px;
  padding: 40px 28px 34px;
  border: 0;
  border-radius: 15px;
  background: #f7f8fa;
  text-align: center;
}

.contact-info-card__icon {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(69%) saturate(2349%)
    hue-rotate(341deg) brightness(95%) contrast(95%);
}

.contact-info-card h2 {
  align-self: start;
  margin: 22px 0 18px;
  color: var(--brand-red);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.contact-info-card p,
.contact-info-card address {
  margin: 0;
  color: #16171d;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.32;
}

.contact-info-card a {
  color: #0d8ee9;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
}

.contact-form-section {
  padding: 0 0 126px;
  background: #ffffff;
}

.contact-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: 500px;
  overflow: hidden;
  padding-inline: 0;
  border: 0;
  border-radius: 16px;
  background: #f7f8fa;
}

.contact-form-panel__image {
  min-height: 500px;
  overflow: hidden;
}

.contact-form-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-panel__content {
  display: grid;
  align-content: center;
  padding: 62px clamp(38px, 5vw, 72px);
}

.contact-form-panel__content h2 {
  margin: 0;
  color: var(--brand-red);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.12;
}

.contact-form-panel__content > p {
  max-width: 560px;
  margin: 22px 0 36px;
  color: #777c88;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 22px;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contact-form label span {
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.contact-form label strong {
  color: var(--brand-orange);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #17243a;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.contact-form input {
  min-height: 48px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 18px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777c88;
  opacity: 0.9;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(191, 152, 48, 0.18);
  outline-offset: 0;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  background: #1d1d22;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--brand-red);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  text-decoration: none;
}

.floating-whatsapp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-whatsapp:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 4px;
}

.family-plan-section {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 92px 32px 112px;
  background-color: var(--brand-red);
  background-image: url("Asset/Home_Images/Your Family_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.family-plan-section__content {
  width: min(100%, 1280px);
}

.family-plan-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.family-plan-section h2 span {
  color: var(--brand-yellow);
}

.family-plan-section p {
  max-width: 1160px;
  margin: 30px auto 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.family-plan-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 58px;
  padding: 0 42px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--brand-red);
  background-image: url("Asset/Home_Images/Footer_bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.site-footer::before {
  content: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1560px);
  margin-inline: auto;
  padding: 78px clamp(40px, 6vw, 96px) 66px;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__brand {
  display: block;
  justify-items: start;
}

.site-footer__logo {
  display: block;
  width: 286px;
  max-width: 100%;
  height: auto;
  margin-bottom: 54px;
}

.site-footer__brand h2 {
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.site-footer__subsidiary {
  display: block;
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  vertical-align: middle;
}

.site-footer__brand p {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer__slogan {
  display: block;
  width: 180px;
  max-width: 28vw;
  height: auto;
  margin-top: 18px;
}

.site-footer__middle {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(360px, 1fr);
  gap: clamp(84px, 10vw, 180px);
  margin-top: 62px;
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 34px 86px;
}

.site-footer__addresses {
  display: grid;
  gap: 30px;
}

.site-footer__contact h3,
.site-footer__address h3 {
  margin: 0 0 8px;
  color: var(--brand-yellow);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.12;
}

.site-footer__contact p,
.site-footer__address p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
}

.site-footer__contact a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.site-footer__map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.site-footer__map img {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  object-fit: contain;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(360px, 1fr);
  align-items: end;
  gap: clamp(84px, 10vw, 180px);
  margin-top: 56px;
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.site-footer__copyright p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.site-footer__social img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.site-footer__certifications {
  display: block;
  width: min(100%, 640px);
  height: auto;
}

@media (max-width: 1400px) {
  .site-header__bar {
    gap: 20px;
    padding: 0 26px 0 230px;
  }

  .site-header__nav {
    gap: 40px;
  }

  .site-header__actions {
    gap: 18px;
  }

  .site-header__country,
  .site-header__language,
  .site-header__login {
    font-size: 12px;
  }

  .site-header__login {
    height: 28px;
    min-height: 28px;
    padding-inline: 24px;
    font-weight: 700;
  }
}

@media (max-width: 1200px) {
  .site-header {
    height: var(--nav-height);
  }

  .site-header__bar {
    padding: 0 28px 0 210px;
  }

  .site-header__nav {
    gap: 24px;
  }
}

@media (max-width: 980px) {
  .site-container {
    padding-inline: 24px;
  }

  .site-header__brand {
    width: 190px;
  }

  .site-header__brand img {
    width: 190px;
    max-height: none;
  }

  .site-header__nav,
  .site-header__actions > .site-header__country,
  .site-header__actions > .site-header__language,
  .site-header__actions > .site-header__login {
    display: none;
  }

  .site-header__bar {
    justify-content: flex-end;
    padding-left: 190px;
  }

  .site-header__mobile-menu {
    display: block;
  }

  .site-header__mobile-menu[open] .site-header__mobile-actions,
  .site-header__mobile-menu[open] nav {
    display: grid;
  }

  .site-header__mobile-actions,
  .site-header__mobile-menu nav {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    border-radius: 0;
  }

  .site-header__mobile-actions {
    z-index: 103;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 148px));
    justify-content: center;
    gap: 18px 16px;
    padding: 28px 24px 24px;
    color: #000000;
    background: #f7f8fa;
  }

  .site-header__mobile-language {
    position: relative;
    color: #000000;
  }

  .site-header__mobile-language .site-header__language-toggle {
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(13, 38, 59, 0.08);
    border-radius: 8px;
    background: #ffffff;
  }

  .site-header__mobile-language .site-header__language-menu {
    top: calc(100% + 10px);
    right: 0;
    width: min(82vw, 220px);
  }

  .site-header__mobile-country {
    color: #000000;
  }

  .site-header__mobile-country .site-header__country-toggle {
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(13, 38, 59, 0.08);
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
  }

  .site-header__mobile-country .site-header__country-menu {
    top: calc(100% + 10px);
    right: auto;
    left: 0;
    width: min(82vw, 250px);
  }

  .site-header__mobile-login {
    display: inline-flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 56px;
    margin: 6px auto 0;
    border-radius: 8px;
    color: #ffffff;
    background: var(--brand-red);
  }

  .site-header__mobile-menu nav {
    z-index: 102;
    top: calc(var(--nav-height) + 160px);
    display: none;
    gap: 0;
    padding: 28px 28px 34px;
    color: #000000;
    background: #ffffff;
  }

  .site-header__mobile-menu nav a {
    padding: 20px 0;
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  }

  .site-header__mobile-nav-dropdown {
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  }

  .site-header__mobile-nav-dropdown summary {
    padding: 20px 0;
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
  }

  .site-header__mobile-nav-menu {
    gap: 8px;
    padding: 0 0 18px 18px;
  }

  .site-header__mobile-menu nav .site-header__mobile-nav-menu a {
    padding: 10px 0;
    color: #1f2937;
    font-size: 15px;
  }

  .site-header__mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero-starter,
  .hero-slide {
    min-height: 680px;
  }

  .hero-slide {
    background-image: url("Asset/Home_Images/Hero_1_bg.jpeg");
    background-position: 62% center;
  }

  .hero-slide--two {
    background-image: url("Asset/Home_Images/Hero_2_bg.jpeg");
  }

  .hero-slide--three {
    background-image: url("Asset/Home_Images/Hero_3_bg.jpeg");
  }

  .hero-inner {
    align-items: flex-start;
    min-height: 680px;
    padding-block: 120px 88px;
  }

  .hero-inner.site-container {
    padding-inline: 48px;
  }

  .hero-copy {
    width: min(100%, 640px);
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero-inner h1,
  .hero-inner h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-description {
    max-width: 500px;
  }

  .hero-description--lead {
    font-size: 14px;
  }

  .hero-description--support {
    font-size: 14px;
  }

  .quick-actions {
    margin-top: -30px;
    padding-inline: 48px;
    padding-bottom: 36px;
  }

  .quick-actions__inner {
    width: min(100%, 1420px);
    padding: 24px;
  }

  .quick-actions__top,
  .quick-actions__body {
    display: grid;
    gap: 26px;
  }

  .quick-actions__top {
    margin-bottom: 24px;
  }

  .quick-actions__tabs,
  .quick-actions[data-mode="services"] .quick-actions__tabs {
    width: max-content;
    max-width: 100%;
    min-height: 58px;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .quick-actions__tab {
    min-height: 46px;
    padding-inline: 28px;
    border-radius: 999px;
    background: #f7f8fa;
    font-size: 18px;
  }

  .quick-actions__tab img {
    width: 20px;
    height: 20px;
  }

  .quick-actions__switch {
    justify-self: start;
    padding-top: 0;
  }

  .quick-actions__plans {
    grid-template-columns: 1fr;
  }

  .quick-actions__panel--service {
    padding-block: 12px 8px;
  }

  .quick-actions__panel--service h3 {
    margin-bottom: 18px;
    font-size: 40px;
  }

  .quick-actions__panel--service p:not(.quick-actions__service-title) {
    font-size: 16px;
  }

  .quick-actions__cta {
    justify-self: start;
    min-width: 172px;
    min-height: 48px;
    font-size: 18px;
  }

  .metrics-section {
    min-height: 176px;
  }

  .metrics-section__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 40px 48px;
    gap: 28px 42px;
  }

  .steps-section {
    padding-block: 88px 104px;
  }

  .steps-section__inner {
    padding-inline: 48px;
    gap: 44px;
  }

  .steps-section__content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .steps-section__media {
    max-width: 720px;
  }

  .steps-section__item {
    padding: 30px 0 28px;
  }

  .steps-section__item-copy {
    font-size: 14px;
  }

  .will-intro {
    min-height: 360px;
    padding-block: 74px 86px;
  }

  .will-intro h2 {
    margin-bottom: 28px;
    font-size: 58px;
  }

  .will-intro p {
    font-size: 14px;
  }

  .importance-section {
    padding-block: 88px 104px;
  }

  .importance-section__heading {
    padding-inline: 48px;
  }

  .importance-section__heading h2 {
    font-size: 58px;
  }

  .importance-section__heading p {
    margin-top: 24px;
    font-size: 14px;
  }

  .importance-slider {
    margin-top: 60px;
  }

  .importance-slider__viewport {
    grid-auto-columns: minmax(320px, 46vw);
    gap: 22px;
    padding-inline: 48px;
    scroll-padding-inline: 48px;
  }

  .importance-card__copy {
    min-height: 132px;
    padding: 24px 22px 28px;
  }

  .importance-card h3 {
    font-size: 18px;
  }

  .why-choose-section {
    padding-block: 88px 104px;
  }

  .why-choose-section__inner {
    padding-inline: 48px;
  }

  .why-choose-section__heading h2 {
    font-size: 58px;
  }

  .why-choose-section__heading p {
    margin-top: 24px;
    font-size: 14px;
  }

  .why-choose-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
    row-gap: 72px;
    margin-top: 72px;
  }

  .why-choose-item img {
    margin-bottom: 38px;
  }

  .why-choose-item h3 {
    font-size: 24px;
  }

  .testimonial-section {
    padding-block: 88px 104px;
  }

  .testimonial-section__inner {
    padding-inline: 48px;
  }

  .testimonial-section__heading h2 {
    font-size: 58px;
  }

  .testimonial-section__heading p {
    margin-top: 24px;
    font-size: 14px;
  }

  .testimonial-section__viewport {
    grid-auto-columns: minmax(360px, 46vw);
    gap: 20px;
    margin-top: 64px;
  }

  .testimonial-card {
    min-height: 238px;
    padding: 30px 28px 28px;
  }

  .faq-section {
    padding-block: 142px 104px;
  }

  .faq-section__inner {
    padding-inline: 48px;
  }

  .faq-section__heading {
    margin-bottom: 58px;
  }

  .faq-section__heading h1,
  .faq-section__heading h2,
  .faq-section__heading p {
    font-size: 58px;
  }

  .faq-item summary {
    min-height: 104px;
  }

  .faq-item__answer {
    padding-right: 80px;
  }

  .faq-section__cta {
    margin-top: 46px;
    padding: 35px 38px;
    border-radius: 15px;
  }

  .faq-section__cta h3 {
    font-size: 22px;
  }

  .faq-section__cta p {
    font-size: 14px;
  }

  .faq-section__cta-actions {
    gap: 12px;
  }

  .faq-section__cta-button {
    min-width: 123px;
    min-height: 45px;
    font-size: 14px;
  }

  .resources-page .faq-section {
    padding-block: 118px 104px;
  }

  .resources-faq-tabs {
    gap: 28px;
    margin-bottom: 30px;
  }

  .resources-faq-tab {
    font-size: 22px;
  }

  .platform-policy-section {
    padding-block: 96px 104px;
  }

  .platform-policy-section__inner {
    padding-inline: 48px;
  }

  .platform-policy-section__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
  }

  .platform-policy-button {
    min-height: 70px;
    font-size: 19px;
  }

  .policy-drawer__header,
  .policy-drawer__content {
    padding-inline: 48px;
  }

  .blog-section {
    padding-block: 116px 104px;
  }

  .blog-section__inner {
    padding-inline: 48px;
  }

  .blog-section__heading {
    margin-bottom: 72px;
  }

  .blog-section__heading h1,
  .blog-section__heading p {
    font-size: 58px;
  }

  .blog-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 28px;
  }

  .blog-card__image-link {
    border-radius: 24px;
  }

  .blog-card__meta {
    margin-top: 26px;
  }

  .blog-card h2 {
    margin-top: 10px;
    font-size: 28px;
  }

  .blog-section__actions {
    margin-top: 56px;
  }

  .blog-article {
    padding-block-start: 106px;
  }

  .blog-article__header h1 {
    font-size: 50px;
  }

  .blog-article__hero {
    width: calc(100% - 48px);
    margin-top: 58px;
    border-radius: 28px;
  }

  .blog-article__content {
    margin-top: 104px;
  }

  .article-read-more {
    padding-block: 104px;
  }

  .article-read-more__inner {
    padding-inline: 48px;
  }

  .article-read-more__heading h2,
  .article-read-more__heading p {
    font-size: 58px;
  }

  .contact-hero {
    padding: 82px 0 44px;
  }

  .about-hero {
    min-height: 640px;
    background-position: center center;
  }

  .partnership-hero {
    min-height: 440px;
  }

  .partnership-hero h1 {
    font-size: 54px;
  }

  .partnership-hero p {
    max-width: 780px;
  }

  .partnership-opportunities {
    min-height: 360px;
  }

  .partnership-opportunities h2 {
    font-size: 48px;
  }

  .partnership-opportunities p {
    max-width: 780px;
  }

  .partnership-programs {
    padding: 88px 48px 104px;
  }

  .partnership-programs__tab {
    font-size: 16px;
  }

  .partnership-programs__panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 460px;
    margin-top: 64px;
  }

  .partnership-programs__image {
    min-height: 460px;
  }

  .partnership-programs__content {
    padding: 46px 38px 42px;
  }

  .partnership-programs__content h2 {
    font-size: 40px;
  }

  .partnership-drawer__inner {
    width: min(calc(100% - 48px), 1400px);
    margin-block: 32px;
    padding-inline: 42px;
  }

  .partnership-drawer__professions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 54px;
  }

  .partnership-detail__icon-grid--four,
  .partnership-detail__icon-grid--three,
  .partnership-detail__feature-grid,
  .partnership-detail__process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partnership-detail__process article:nth-child(2)::after {
    display: none;
  }

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

  .about-hero h1 {
    font-size: 54px;
  }

  .about-hero p {
    max-width: 640px;
    font-size: 14px;
  }

  .about-who {
    padding: 92px 0 100px;
  }

  .about-who h2 {
    font-size: 48px;
  }

  .about-who__copy {
    width: min(100%, 820px);
  }

  .about-who__carousel {
    margin-top: 48px;
  }

  .about-who__slide {
    flex-basis: clamp(240px, 34vw, 350px);
  }

  .about-guidance {
    padding: 92px 0 104px;
  }

  .about-guidance__inner {
    gap: 48px;
  }

  .about-guidance__heading h2 {
    font-size: 48px;
  }

  .about-guidance__featured,
  .about-guidance__values {
    gap: 28px;
  }

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

  .about-guidance-card h3 {
    font-size: 22px;
  }

  .about-guidance-card p {
    font-size: 15px;
    line-height: 1.28;
  }

  .about-partner {
    padding: 68px 0 64px;
  }

  .about-partner h2 {
    max-width: 680px;
    font-size: 18px;
  }

  .about-partner img {
    width: min(100%, 280px);
    height: 96px;
    margin-top: 30px;
  }

  .about-platform {
    padding: 68px 0 64px;
  }

  .about-platform h2 {
    font-size: 34px;
  }

  .about-platform p {
    font-size: 18px;
  }

  .about-platform__logos {
    gap: 42px;
    margin-top: 32px;
  }

  .about-platform__logos img {
    height: 88px;
  }

  .about-accolades {
    padding: 104px 0;
  }

  .about-accolades__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-accolades__copy {
    text-align: center;
  }

  .about-accolades__copy p {
    margin-inline: auto;
  }

  .about-accolades__logos {
    gap: 58px 42px;
  }

  .contact-details {
    padding-bottom: 80px;
  }

  .contact-details__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-inline: 48px;
  }

  .contact-info-card:nth-child(4),
  .contact-info-card:nth-child(5) {
    grid-column: auto;
    transform: none;
  }

  .contact-info-card {
    min-height: 190px;
  }

  .contact-form-section {
    padding-bottom: 104px;
  }

  .contact-form-panel {
    width: calc(100% - 96px);
    grid-template-columns: 1fr;
  }

  .contact-form-panel__image {
    min-height: 420px;
  }

  .contact-form-panel__content {
    padding: 48px;
  }

  .family-plan-section {
    min-height: 380px;
    padding-block: 82px 98px;
  }

  .family-plan-section h2 {
    font-size: 58px;
  }

  .family-plan-section p {
    margin-top: 26px;
    font-size: 14px;
  }

  .family-plan-section__cta {
    margin-top: 44px;
  }

  .site-footer__inner {
    padding: 68px 48px 58px;
  }

  .site-footer__logo {
    width: 250px;
    margin-bottom: 44px;
  }

  .site-footer__slogan {
    width: 110px;
    max-width: 34vw;
  }

  .site-footer__middle,
  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .site-footer__bottom {
    margin-top: 48px;
  }

  .site-footer__copyright {
    flex-wrap: wrap;
  }

  .site-footer__certifications {
    width: min(100%, 560px);
  }
}

@media (max-width: 520px) {
  :root {
    --nav-height: 58px;
  }

  .site-container {
    padding-inline: 24px;
  }

  .site-header__bar {
    gap: 10px;
    padding: 0 14px 0 150px;
  }

  .site-header__brand {
    width: 146px;
  }

  .site-header__brand img {
    width: 146px;
    max-height: none;
  }

  .site-header__actions {
    gap: 10px;
  }

  .site-header__actions > .site-header__country,
  .site-header__actions > .site-header__language {
    display: none;
  }

  .site-header__login {
    height: 28px;
    min-height: 28px;
    padding-inline: 16px;
    font-size: 12px;
    font-weight: 700;
  }

  .site-header__mobile-menu > summary {
    width: 32px;
    height: 32px;
  }

  .hero-starter,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    background-image: url("Asset/Home_Images/Hero_1_bg.jpeg");
    background-position: 69% center;
  }

  .hero-slide--two {
    background-image: url("Asset/Home_Images/Hero_2_bg.jpeg");
  }

  .hero-slide--three {
    background-image: url("Asset/Home_Images/Hero_3_bg.jpeg");
  }

  .hero-inner {
    min-height: 720px;
    align-items: center;
    padding-block: 124px 84px;
  }

  .hero-inner.site-container {
    padding-inline: 24px;
  }

  .hero-copy {
    width: 100%;
    padding: 32px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero-inner h1,
  .hero-inner h2 {
    font-size: 40px;
  }

  .hero-description {
    margin-top: 20px;
  }

  .hero-description--lead {
    font-size: 14px;
  }

  .hero-description--support {
    font-size: 14px;
  }

  .hero-cta {
    width: 100%;
    padding: 0 22px;
  }

  .hero-slider {
    bottom: 46px;
  }

  .quick-actions {
    margin-top: -24px;
    padding-inline: 24px;
    padding-bottom: 34px;
  }

  .quick-actions__inner {
    width: min(100%, 398px);
    padding: 14px;
    border-radius: 15px;
  }

  .quick-actions__top {
    gap: 16px;
    margin-bottom: 18px;
  }

  .quick-actions__tabs,
  .quick-actions[data-mode="services"] .quick-actions__tabs {
    width: 100%;
    min-height: 44px;
    gap: 8px;
    padding: 0 34px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 42px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 42px), transparent 100%);
  }

  .quick-actions__tab {
    min-height: 36px;
    padding-inline: 14px;
    gap: 5px;
    font-size: 12px;
  }

  .quick-actions__tab img {
    width: 15px;
    height: 15px;
  }

  .quick-actions__switch {
    gap: 9px;
    font-size: 11px;
  }

  .quick-actions__switch--desktop {
    display: none;
  }

  .quick-actions__switch--mobile {
    display: inline-flex;
    justify-self: center;
    margin: 0;
    padding-top: 0;
  }

  .quick-actions__panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
  }

  .quick-actions__label {
    margin-bottom: 0;
    font-size: 13px;
  }

  .quick-actions__plan-card {
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .quick-actions__plan-card h3,
  .quick-actions__panel--service h3 {
    font-size: 18px;
  }

  .quick-actions__price {
    font-size: 18px;
  }

  .quick-actions__note {
    line-height: 1.45;
  }

  .quick-actions__panel--service h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .quick-actions__service-title {
    font-size: 14px !important;
  }

  .quick-actions__panel--service p:not(.quick-actions__service-title) {
    font-size: 14px;
    line-height: 1.45;
  }

  .quick-actions__cta {
    width: 100%;
    min-height: 42px;
    font-size: 15px;
  }

  .metrics-section {
    min-height: 0;
    background-position: center;
  }

  .metrics-section__inner {
    grid-template-columns: 1fr;
    padding: 38px 24px;
    gap: 24px;
  }

  .metrics-section__number {
    font-size: 34px;
  }

  .metrics-section__label {
    font-size: 18px;
  }

  .steps-section {
    padding-block: 72px 84px;
  }

  .steps-section__inner {
    padding-inline: 24px;
    gap: 32px;
  }

  .steps-section__heading p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .steps-section__heading h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .steps-section__content {
    gap: 32px;
  }

  .steps-section__media {
    border-radius: 16px;
    aspect-ratio: 1 / 0.82;
  }

  .steps-section__item {
    padding-block: 24px;
  }

  .steps-section__item-title {
    font-size: 34px;
  }

  .steps-section__item-copy {
    font-size: 14px;
    line-height: 1.45;
  }

  .steps-section__item:hover .steps-section__item-copy,
  .steps-section__item:focus-visible .steps-section__item-copy {
    max-height: 220px;
  }

  .will-intro {
    min-height: 430px;
    padding: 72px 24px 82px;
    background-position: center;
  }

  .will-intro h2 {
    margin-bottom: 24px;
    font-size: 40px;
  }

  .will-intro p {
    font-size: 14px;
    line-height: 1.55;
  }

  .will-intro p + p {
    margin-top: 18px;
  }

  .importance-section {
    padding-block: 72px 84px;
  }

  .importance-section__heading {
    padding-inline: 24px;
  }

  .importance-section__heading h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .importance-section__heading p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .importance-slider {
    margin-top: 40px;
  }

  .importance-slider__viewport {
    grid-auto-columns: minmax(280px, 86vw);
    gap: 16px;
    padding-inline: 24px;
    scroll-padding-inline: 24px;
  }

  .importance-card {
    border-radius: 16px;
  }

  .importance-card img {
    aspect-ratio: 1 / 0.86;
  }

  .importance-card__copy {
    min-height: 124px;
    padding: 22px 20px 26px;
  }

  .importance-card h3 {
    font-size: 18px;
  }

  .importance-card p {
    font-size: 14px;
    line-height: 1.38;
  }

  .importance-slider__dots {
    margin-top: 26px;
  }

  .why-choose-section {
    padding-block: 72px 84px;
  }

  .why-choose-section__inner {
    padding-inline: 24px;
  }

  .why-choose-section__heading h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .why-choose-section__heading p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .why-choose-section__grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
    margin-top: 52px;
  }

  .why-choose-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
  }

  .why-choose-item h3 {
    font-size: 22px;
  }

  .why-choose-item p {
    font-size: 14px;
    line-height: 1.45;
  }

  .testimonial-section {
    padding-block: 72px 84px;
  }

  .testimonial-section__inner {
    padding-inline: 24px;
  }

  .testimonial-section__heading h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .testimonial-section__heading p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-section__viewport {
    grid-auto-columns: minmax(280px, 86vw);
    gap: 16px;
    margin-top: 44px;
  }

  .testimonial-card {
    min-height: 252px;
    padding: 26px 22px 24px;
  }

  .testimonial-card__stars {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .testimonial-card p {
    margin: 18px 0 30px;
    font-size: 14px;
    line-height: 1.4;
  }

  .testimonial-card h3 {
    font-size: 22px;
  }

  .faq-section {
    padding-block: 124px 84px;
  }

  .faq-section__inner {
    padding-inline: 24px;
  }

  .faq-section__heading {
    margin-bottom: 44px;
  }

  .faq-section__heading h1,
  .faq-section__heading h2,
  .faq-section__heading p {
    font-size: 40px;
  }

  .faq-item summary {
    gap: 20px;
    min-height: 88px;
  }

  .faq-item summary span:first-child {
    font-size: 18px;
  }

  .faq-item__icon {
    width: 35px;
    height: 35px;
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 11px;
  }

  .faq-item__answer {
    padding: 0 0 28px;
  }

  .faq-item__answer p {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-section__cta {
    display: grid;
    gap: 22px;
    width: 100%;
    max-width: 465px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 35px;
    padding: 26px 19px;
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
  }

  .faq-section__cta > div:first-child {
    width: 100%;
    text-align: center;
  }

  .faq-section__cta h3 {
    font-size: 18px;
  }

  .faq-section__cta p {
    margin: 11px auto 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-section__cta-actions {
    display: grid;
    gap: 12px;
    justify-items: center;
    width: 100%;
  }

  .faq-section__cta-button {
    width: 100%;
    max-width: 465px;
    margin-inline: auto;
    min-height: 38px;
    font-size: 14px;
  }

  .resources-page .faq-section__cta {
    text-align: center;
  }

  .resources-page .faq-section__cta > div:first-child,
  .resources-page .faq-section__cta-actions {
    width: 100%;
  }

  .resources-page .faq-section__cta-actions {
    justify-content: center;
  }

  .resources-page .faq-section__cta-button {
    width: min(100%, 465px);
  }

  .resources-page .faq-section {
    padding-block: 96px 84px;
  }

  .resources-page .faq-section__heading {
    margin-bottom: 42px;
  }

  .resources-faq-tabs {
    gap: 22px;
    margin-bottom: 26px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .resources-faq-tab {
    flex: 0 0 auto;
    font-size: 20px;
  }

  .platform-policy-section {
    padding-block: 76px 84px;
  }

  .platform-policy-section__inner {
    padding-inline: 24px;
  }

  .platform-policy-section__heading h2 {
    font-size: 40px;
  }

  .platform-policy-section__heading p {
    margin-top: 18px;
  }

  .platform-policy-section__actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
    justify-items: center;
  }

  .platform-policy-button {
    width: min(280px, 100%);
    min-height: 72px;
    padding: 16px 18px;
    font-size: 18px;
  }

  .policy-drawer__panel {
    max-height: calc(100vh - 24px);
  }

  .policy-drawer__header {
    gap: 18px;
    padding: 26px 20px 20px;
  }

  .policy-drawer__header h2 {
    font-size: 28px;
  }

  .policy-drawer__header p {
    margin-top: 8px;
  }

  .policy-drawer__close {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .policy-drawer__content {
    padding: 0 20px 24px;
  }

  .policy-drawer__document {
    height: 66vh;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .policy-drawer__document h3 {
    margin-top: 22px;
    font-size: 18px;
  }

  .policy-drawer__document p {
    font-size: 14px;
    line-height: 1.65;
  }

  .blog-section {
    padding-block: 92px 84px;
  }

  .blog-section__inner {
    padding-inline: 24px;
  }

  .blog-section__heading {
    margin-bottom: 52px;
  }

  .blog-section__heading h1,
  .blog-section__heading p {
    font-size: 40px;
  }

  .blog-section__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-card__image-link {
    border-radius: 18px;
  }

  .blog-card__meta {
    gap: 9px;
    margin-top: 22px;
    font-size: 14px;
  }

  .blog-card h2 {
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.2;
  }

  .blog-section__actions {
    margin-top: 42px;
  }

  .blog-section__load-more {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
  }

  .blog-article {
    padding-block-start: 92px;
  }

  .blog-article__header {
    padding-inline: 24px;
  }

  .blog-article__header h1 {
    margin: 28px 0 26px;
    font-size: 38px;
  }

  .blog-article__hero {
    width: calc(100% - 32px);
    margin-top: 44px;
    border-radius: 20px;
    aspect-ratio: 1 / 0.72;
  }

  .blog-article__content {
    width: calc(100% - 48px);
    margin-top: 72px;
  }

  .blog-article__content p {
    font-size: 16px;
    line-height: 1.45;
  }

  .blog-article__lead {
    font-size: 20px;
    line-height: 1.25;
  }

  .blog-article__content h2 {
    margin: 58px 0 24px;
    font-size: 22px;
  }

  .article-read-more {
    padding-block: 86px;
  }

  .article-read-more__inner {
    padding-inline: 24px;
  }

  .article-read-more__heading {
    margin-bottom: 42px;
  }

  .article-read-more__heading h2,
  .article-read-more__heading p {
    font-size: 40px;
  }

  .article-read-more__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-hero {
    padding: 78px 0 36px;
  }

  .about-hero {
    min-height: 620px;
    background-position: center center;
  }

  .partnership-hero {
    min-height: 560px;
  }

  .partnership-hero__inner {
    padding: 88px 28px 72px;
  }

  .partnership-hero h1 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.12;
  }

  .partnership-hero p {
    max-width: 330px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.55;
  }

  .partnership-hero__cta {
    width: min(100%, 330px);
    min-height: 56px;
    margin-top: 42px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .partnership-opportunities {
    min-height: 500px;
    background-position: center center;
  }

  .partnership-opportunities__inner {
    padding: 72px 28px;
  }

  .partnership-opportunities h2 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1.12;
  }

  .partnership-opportunities p {
    max-width: 330px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.55;
  }

  .partnership-programs {
    padding: 72px 20px 84px;
  }

  .partnership-programs__tabs {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 0 34px 0 0;
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 42px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 42px), transparent 100%);
  }

  .partnership-programs__tabs::-webkit-scrollbar {
    display: none;
  }

  .partnership-programs__tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f7f8fa;
    font-size: 14px;
    white-space: nowrap;
  }

  .partnership-programs__panel {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 34px;
    border-radius: 15px;
  }

  .partnership-programs__image {
    min-height: 0;
    padding: 12px;
  }

  .partnership-programs__image img {
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .partnership-programs__content {
    padding: 30px 22px 26px;
  }

  .partnership-programs__content h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .partnership-programs__copy {
    gap: 18px;
    margin-top: 22px;
  }

  .partnership-programs__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 30px;
  }

  .partnership-programs__button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 16px;
  }

  .partnership-drawer__panel {
    max-height: calc(100vh - 14px);
    border-radius: 15px 15px 0 0;
  }

  .partnership-drawer__inner {
    width: calc(100% - 24px);
    margin-block: 12px;
    padding: 66px 24px 48px;
    border-radius: 15px;
  }

  .partnership-drawer__close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .partnership-drawer__heading {
    padding-right: 0;
  }

  .partnership-drawer__heading h2 {
    max-width: 280px;
    font-size: 34px;
    line-height: 1.12;
  }

  .partnership-drawer__heading p {
    margin-top: 18px;
    line-height: 1.55;
  }

  .partnership-drawer__professions {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 44px;
  }

  .partnership-profession img {
    width: 38px;
    height: 38px;
  }

  .partnership-profession h3 {
    margin-top: 18px;
    font-size: 21px;
  }

  .partnership-profession p {
    max-width: 310px;
  }

  .partnership-reseller-programs {
    margin-top: 54px;
    padding: 44px 28px 50px;
  }

  .partnership-reseller-programs__heading h3 {
    font-size: 36px;
  }

  .partnership-reseller-programs__grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .partnership-reseller-card {
    padding: 36px 30px 38px;
  }

  .partnership-reseller-card__details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partnership-detail__heading {
    padding-right: 0;
  }

  .partnership-detail__heading h2,
  .partnership-detail__section > h2 {
    max-width: 300px;
    font-size: 30px;
    line-height: 1.15;
  }

  .partnership-detail__heading p,
  .partnership-detail__section > p,
  .partnership-detail article p {
    line-height: 1.55;
  }

  .partnership-detail__icon-grid--four,
  .partnership-detail__icon-grid--three,
  .partnership-detail__feature-grid,
  .partnership-detail__text-grid,
  .partnership-detail__process {
    grid-template-columns: 1fr;
  }

  .partnership-detail__icon-grid {
    gap: 14px;
    margin-top: 34px;
  }

  .partnership-detail__icon-card {
    min-height: 190px;
  }

  .partnership-detail__icon-grid--plain .partnership-detail__icon-card {
    min-height: 0;
    padding-block: 6px;
  }

  .partnership-detail__divider {
    margin-block: 44px;
  }

  .partnership-detail__text-grid {
    gap: 28px;
    margin-top: 32px;
  }

  .partnership-detail__feature-grid {
    gap: 12px;
  }

  .partnership-detail__feature-grid article {
    min-height: 0;
  }

  .partnership-detail__subheading {
    margin-top: 26px;
    font-size: 19px;
  }

  .partnership-detail__process {
    gap: 34px;
    margin-top: 30px;
  }

  .partnership-detail__process article::after {
    display: none;
  }

  .partnership-detail__cta a {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .partnership-cspm__learn-grid,
  .partnership-cspm__audience-grid,
  .partnership-cspm__course-grid,
  .partnership-cspm__process {
    grid-template-columns: 1fr;
  }

  .partnership-cspm__learn-grid,
  .partnership-cspm__audience-grid,
  .partnership-cspm__course-grid,
  .partnership-cspm__process {
    gap: 28px;
    margin-top: 32px;
  }

  .partnership-cspm__learn-grid article {
    padding: 22px;
  }

  .partnership-cspm__process article::after {
    display: none;
  }

  .about-hero__content {
    padding-top: 76px;
    padding-bottom: 56px;
  }

  .about-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .about-hero p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.45;
  }

  .about-who {
    padding: 72px 0 78px;
    background-position: center bottom;
  }

  .about-who__inner {
    padding-inline: 24px;
  }

  .about-who h2 {
    font-size: 40px;
  }

  .about-who__copy p,
  .about-who__copy p:first-of-type {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .about-who__carousel {
    --about-gallery-gap: 10px;
    width: calc(100% + 48px);
    margin-top: 36px;
    margin-inline: -24px;
    padding: 8px 0 36px;
    min-height: 218px;
  }

  .about-who__track {
    gap: var(--about-gallery-gap);
  }

  .about-who__track {
    align-items: flex-start;
    min-height: 174px;
    animation-duration: 24s;
    transform: translate3d(0, 0, 0);
  }

  .about-who__slide {
    flex-basis: min(62vw, 240px);
    border-width: 4px;
    border-radius: 14px;
  }

  .about-who__track > .about-who__slide:nth-child(5n + 1),
  .about-who__track > .about-who__slide:nth-child(5n + 5) {
    transform: translateY(24px);
  }

  .about-who__track > .about-who__slide:nth-child(5n + 2),
  .about-who__track > .about-who__slide:nth-child(5n + 4) {
    transform: translateY(12px);
  }

  .about-guidance {
    padding: 72px 0 84px;
  }

  .about-guidance__inner {
    gap: 36px;
    padding-inline: 28px;
  }

  .about-guidance__heading h2 {
    max-width: 320px;
    font-size: 40px;
  }

  .about-guidance__heading p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .about-guidance__featured,
  .about-guidance__values {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-guidance__values {
    margin-top: 0;
  }

  .about-guidance-card__copy {
    padding: 18px 0 0;
  }

  .about-guidance-card h3 {
    font-size: 24px;
  }

  .about-guidance-card p {
    font-size: 15px;
    line-height: 1.32;
  }

  .about-partner {
    padding: 58px 0 54px;
  }

  .about-partner__inner {
    padding-inline: 28px;
  }

  .about-partner h2 {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.5;
  }

  .about-partner img {
    width: min(100%, 240px);
    height: 82px;
    margin-top: 26px;
  }

  .about-platform {
    padding: 58px 0 54px;
  }

  .about-platform__inner {
    padding-inline: 28px;
  }

  .about-platform h2 {
    max-width: 330px;
    font-size: 30px;
  }

  .about-platform p {
    max-width: 300px;
    margin-top: 12px;
    font-size: 16px;
  }

  .about-platform__logos {
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .about-platform__logos img,
  .about-platform__logos img:first-child {
    width: min(100%, 250px);
    height: 76px;
  }

  .about-platform__logos img:last-child {
    width: min(100%, 210px);
    height: 76px;
  }

  .about-accolades {
    padding: 76px 0 88px;
  }

  .about-accolades__inner {
    gap: 42px;
    padding-inline: 28px;
  }

  .about-accolades__copy h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .about-accolades__copy p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.38;
  }

  .about-accolades__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 30px;
  }

  .about-accolades__logo {
    min-height: 86px;
  }

  .about-accolades__logo img {
    width: min(100%, 132px);
    max-height: 86px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-hero p {
    margin-top: 18px;
    line-height: 1.55;
  }

  .contact-details {
    padding: 28px 0 72px;
  }

  .contact-details__grid {
    gap: 18px;
    padding-inline: 24px;
  }

  .contact-info-card {
    min-height: 178px;
    padding: 28px 20px;
  }

  .contact-info-card__icon {
    width: 30px;
    height: 30px;
  }

  .contact-info-card h2 {
    font-size: 24px;
  }

  .contact-form-section {
    padding-bottom: 84px;
  }

  .contact-form-panel {
    width: calc(100% - 32px);
    border-radius: 14px;
  }

  .contact-form-panel__image {
    min-height: 300px;
  }

  .contact-form-panel__content {
    padding: 36px 22px 28px;
  }

  .contact-form-panel__content h2 {
    font-size: 30px;
  }

  .contact-form-panel__content > p {
    margin: 16px 0 30px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 72px;
    height: 72px;
  }

  .family-plan-section {
    min-height: 430px;
    padding: 72px 24px 84px;
  }

  .family-plan-section h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .family-plan-section p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

  .family-plan-section__cta {
    width: 100%;
    max-width: 280px;
    margin-top: 36px;
    padding-inline: 24px;
  }

  .site-footer::before {
    bottom: -18%;
    height: 46%;
  }

  .site-footer__inner {
    padding: 56px 24px 48px;
  }

  .site-footer__top {
    display: grid;
    gap: 34px;
  }

  .site-footer__logo {
    width: 220px;
    margin-bottom: 36px;
  }

  .site-footer__brand h2 {
    font-size: 24px;
  }

  .site-footer__brand p,
  .site-footer__contact p,
  .site-footer__address p,
  .site-footer__copyright p {
    font-size: 14px;
  }

  .site-footer__slogan {
    width: 105px;
    max-width: 100%;
    margin-top: 0;
  }

  .site-footer__middle {
    gap: 44px;
    margin-top: 48px;
  }

  .site-footer__contacts {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__contact h3,
  .site-footer__address h3 {
    font-size: 18px;
  }

  .site-footer__map {
    width: 100%;
    max-width: 220px;
  }

  .site-footer__bottom {
    gap: 36px;
    margin-top: 44px;
  }

  .site-footer__copyright {
    display: grid;
    gap: 24px;
  }

  .site-footer__certifications {
    width: 100%;
  }
}
