@font-face {
  font-family: "Vela Sans GX";
  src:
    url("assets/fonts/VelaSans-GX.woff2") format("woff2"),
    url("assets/fonts/VelaSans-GX.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src:
    url("assets/fonts/VelaSans-Regular.woff2") format("woff2"),
    url("assets/fonts/VelaSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src:
    url("assets/fonts/VelaSans-Medium.woff2") format("woff2"),
    url("assets/fonts/VelaSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vela Sans";
  src:
    url("assets/fonts/VelaSans-Bold.woff2") format("woff2"),
    url("assets/fonts/VelaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-blue: #0c4792;
  --color-accent: #2484ff;
  --color-ink: #000c1a;
  --color-text: #323232;
  --color-block: #e9eef3;
  --color-white: #ffffff;
  --color-muted: #cbcbcb;
  --container: 1216px;
  --desktop-canvas: 1280px;
  --page-padding: 32px;
  --grid-gap: 16px;
  --radius-card: 12px;
  --radius-button: 12px;
  --radius-large: 24px;
  --radius-small: 6px;
  --font-main: "Vela Sans GX", "Vela Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

body.nav-open {
  overflow: hidden;
}

.autoscale-viewport {
  width: 100%;
}

.autoscale-stage {
  position: relative;
  width: 100%;
  background: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - var(--page-padding) * 2));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-dark {
  color: var(--color-white);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 154px;
  color: var(--color-white);
  font-size: clamp(42px, 3.75vw, 48px);
  font-weight: 700;
  line-height: 1;
}

h2 {
  margin-bottom: 0;
  color: var(--color-blue);
  font-size: clamp(31px, 2.82vw, 36px);
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-bottom: 0;
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.08;
}

p {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-button);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  color: var(--color-ink);
  background: var(--color-white);
}

.site-header {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 42px;
  width: min(var(--container), calc(100% - var(--page-padding) * 2));
  height: 31px;
  color: var(--color-white);
  transform: translateX(-50%);
}

.site-logo {
  width: 121px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 46px;
  padding-top: 3px;
  font-size: 12px;
  line-height: 16px;
}

.header-link {
  padding-top: 3px;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-white);
}

.hero {
  position: relative;
  min-height: 697px;
  overflow: hidden;
  background: var(--color-blue);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background: rgba(0, 32, 174, 0.3);
  backdrop-filter: blur(5.7px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 697px;
  padding-top: 146px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.hero-content {
  grid-column: 1 / span 8;
  min-width: 0;
}

.hero-content p {
  width: min(513px, 100%);
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.12;
}

.hero-content .button {
  min-height: 65px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 24px;
}

.intro-section {
  padding-top: 96px;
  padding-bottom: 78px;
}

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

.intro-lead {
  grid-column: 1 / span 6;
  min-width: 0;
}

.intro-lead h2 {
  color: var(--color-blue);
  font-size: clamp(28px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.intro-lead strong {
  font-weight: 700;
}

.intro-copy {
  grid-column: 7 / span 4;
  min-width: 0;
  padding-top: 20px;
}

.intro-copy p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--color-accent);
}

.text-link::after {
  width: 36px;
  height: 1px;
  content: "";
  display: none;
  background: currentColor;
}

.stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.stats article {
  min-height: 132px;
  padding-right: 48px;
}

.stats article:not(:first-child) {
  padding-left: 48px;
  border-left: 1px solid rgba(12, 71, 146, 0.42);
}

.stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: clamp(54px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.stats p {
  max-width: 310px;
  font-size: 13px;
  line-height: 1.18;
}

.services-section {
  padding-top: 54px;
}

.section-heading {
  margin-bottom: 44px;
}

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

.service-card {
  min-height: 266px;
  padding: 32px 16px;
  background: var(--color-block);
  border-radius: var(--radius-card);
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
}

.service-card h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1;
}

.service-card p {
  max-width: 260px;
  font-size: 13px;
}

.process-section {
  padding-top: 64px;
  padding-bottom: 96px;
}

.process-intro {
  max-width: 404px;
  margin-bottom: 36px;
}

.process-intro h2 {
  margin-bottom: 24px;
}

.process-map {
  position: relative;
  min-height: 377px;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc((100% - 7px) / 8),
    rgba(203, 203, 203, 0.62) calc((100% - 7px) / 8),
    rgba(203, 203, 203, 0.62) calc((100% - 7px) / 8 + 1px)
  );
}

.process-step {
  position: absolute;
  width: 32.5%;
}

.process-step > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  background: var(--color-block);
  border-radius: var(--radius-small);
}

.process-step h3 {
  font-size: 18px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: var(--radius-small);
  font-size: 13px;
  font-weight: 700;
}

.process-step p {
  width: 210px;
  max-width: 210px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.16;
}

.process-step.is-active > div {
  background: var(--color-blue);
}

.process-step.is-active h3 {
  color: var(--color-white);
}

.process-step.is-active span {
  color: var(--color-accent);
  background: var(--color-block);
}

.step-diagnosis {
  top: 37px;
  left: 0;
  width: 292px;
}

.step-diagnosis p {
  margin-left: 328px;
  margin-top: -36px;
}

.step-design {
  top: 101px;
  left: 19.25%;
}

.step-design p {
  margin-left: calc(100% + 36px);
  margin-top: -40px;
}

.step-build {
  top: 165px;
  left: 31.25%;
  width: 41%;
}

.step-build p {
  margin-left: calc(100% + 36px);
  margin-top: -40px;
}

.step-launch {
  top: 229px;
  right: 12.1%;
}

.step-launch p {
  margin-left: -236px;
  margin-top: -40px;
  text-align: right;
}

.step-education {
  top: 293px;
  right: 0;
}

.step-education p {
  margin-left: -236px;
  margin-top: -40px;
  text-align: right;
}

.expertise-section {
  padding-top: 32px;
  padding-bottom: 92px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: end;
}

.expert-photo {
  grid-column: 1 / span 5;
  width: 100%;
  aspect-ratio: 497 / 573;
  object-fit: cover;
  border-radius: var(--radius-large);
}

.expert-side {
  grid-column: 7 / span 6;
  display: grid;
  min-width: 0;
  gap: var(--grid-gap);
  align-self: start;
}

.expert-copy {
  min-height: 312px;
}

.expert-copy h2 {
  margin-bottom: 24px;
}

.expert-copy p:last-child {
  max-width: 520px;
}

.expert-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.expert-card {
  min-height: 245px;
  padding: 132px 20px 20px;
  background: var(--color-block);
  border-radius: var(--radius-card);
}

.expert-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
}

.expert-card p {
  font-size: 13px;
}

.faq-section {
  padding-top: 74px;
  padding-bottom: 96px;
}

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

.faq-title {
  grid-column: 1 / span 5;
  min-width: 0;
}

.faq-list {
  grid-column: 7 / span 6;
  min-width: 0;
  border-top: 1px solid rgba(0, 12, 26, 0.2);
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr 25px;
  gap: 40px;
  min-height: 182px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 12, 26, 0.2);
}

.faq-item h3 {
  max-width: 320px;
  margin-bottom: 24px;
}

.faq-item p {
  max-width: 507px;
  font-size: 13px;
}

.faq-item img {
  width: 25px;
  height: 25px;
}

.contact-section {
  padding-top: 0;
  padding-bottom: 96px;
}

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

.contact-illustration,
.contact-panel {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-large);
}

.contact-illustration {
  object-fit: cover;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: var(--color-white);
  background: var(--color-blue);
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
  color: var(--color-white);
}

.contact-panel .eyebrow {
  font-weight: 400;
}

.contact-copy {
  max-width: 497px;
  margin-bottom: 72px;
}

.contact-copy h2 {
  max-width: 477px;
  margin-bottom: 24px;
  font-size: clamp(26px, 2.25vw, 29px);
}

.contact-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

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

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

.contact-form label {
  display: grid;
  gap: 0;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.52);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
  opacity: 1;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 30px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  color: var(--color-white);
  background: transparent;
  outline: none;
  resize: none;
}

.consent {
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 20px !important;
}

.consent input {
  position: relative;
  width: 28px;
  height: 28px;
  margin: 0;
  appearance: none;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-small);
  background: transparent;
}

.consent input:checked {
  background: var(--color-white);
}

.consent input:checked::after {
  position: absolute;
  top: 7px;
  left: 6px;
  width: 13px;
  height: 7px;
  content: "";
  border-bottom: 2px solid var(--color-blue);
  border-left: 2px solid var(--color-blue);
  transform: rotate(-45deg);
}

.consent span {
  color: var(--color-white) !important;
  font-size: 10px;
  line-height: 1.35;
}

.consent a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-form .button {
  justify-self: start;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: -16px 0 0;
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.3;
}

.site-footer {
  padding: 52px 0 80px;
  border-top: 1px solid rgba(0, 12, 26, 0.12);
}

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

.footer-brand {
  grid-column: 1 / span 5;
}

.footer-brand img {
  width: min(435px, 100%);
  margin-bottom: 62px;
}

.footer-brand p {
  max-width: 230px;
}

.footer-nav {
  grid-column: 7 / span 3;
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-contacts {
  grid-column: 10 / span 3;
}

.footer-nav h2,
.footer-contacts h2 {
  margin: 0 0 20px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a {
  color: var(--color-ink);
  font-weight: 700;
}

.footer-nav a:nth-last-child(-n + 2) {
  margin-top: 28px;
  font-weight: 500;
}

.footer-nav a:last-child {
  margin-top: 0;
}

.footer-contacts a {
  display: block;
  color: var(--color-ink);
  font-size: clamp(23px, 2.1vw, 27px);
  font-weight: 700;
  line-height: 1.35;
}

.legal-page {
  color: var(--color-ink);
  background: var(--color-white);
}

.legal-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 12, 26, 0.12);
}

.legal-header img {
  width: 220px;
}

.legal-header a:last-child {
  color: var(--color-blue);
  font-weight: 700;
}

.legal-content {
  padding-top: 56px;
}

.legal-content h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--color-blue);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.legal-content h2 {
  margin: 44px 0 14px;
  color: var(--color-blue);
  font-size: 24px;
  line-height: 1.12;
}

.legal-content p,
.legal-content li {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.55;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-note {
  max-width: 760px;
  margin: 0 0 32px;
  color: rgba(0, 12, 26, 0.62) !important;
}

.legal-placeholder {
  color: var(--color-blue);
  font-weight: 700;
}

.legal-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 12, 26, 0.12);
}

.legal-footer a {
  color: var(--color-blue);
  font-weight: 700;
}

@media (min-width: 1101px) {
  .autoscale-viewport {
    overflow: hidden;
  }

  .autoscale-stage {
    width: var(--desktop-canvas);
    transform: scale(var(--desktop-scale, 1));
    transform-origin: top left;
  }

  .hero-content {
    grid-column: 1 / -1;
    max-width: 1120px;
  }

  .hero-content h1 {
    max-width: 1120px;
    margin-bottom: 72px;
    font-size: 90px;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 36px;
  }

  .intro-lead h2 {
    font-size: 32px;
  }

  .stats strong {
    font-size: 64px;
  }

  .contact-copy h2 {
    font-size: 29px;
  }

  .footer-contacts a {
    font-size: 27px;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-padding: 24px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-link {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open {
    height: auto;
  }

  .site-header.is-open .site-nav {
    position: fixed;
    inset: 52px 24px auto;
    display: grid;
    gap: 18px;
    padding: 24px;
    color: var(--color-white);
    background: rgba(12, 71, 146, 0.94);
    border-radius: var(--radius-card);
    backdrop-filter: blur(10px);
  }

  .hero-content,
  .intro-lead,
  .intro-copy,
  .faq-title,
  .faq-list {
    grid-column: 1 / -1;
  }

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

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

  .hero-content .button {
    min-height: 43px;
    padding: 0 16px;
    border-radius: var(--radius-button);
    font-size: 16px;
  }

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

  .expert-photo {
    grid-column: 1 / span 6;
  }

  .expert-side {
    grid-column: 7 / span 6;
  }

  .process-map {
    display: grid;
    min-height: 0;
    gap: 12px;
    background-image: none;
  }

  .process-step {
    position: static;
    width: 100%;
  }

  .process-step p,
  .step-diagnosis p,
  .step-design p,
  .step-build p,
  .step-launch p,
  .step-education p {
    width: auto;
    max-width: none;
    margin: 10px 0 0;
    text-align: left;
  }

  .footer-brand {
    grid-column: 1 / span 6;
  }

  .footer-nav {
    grid-column: 7 / span 3;
  }

  .footer-contacts {
    grid-column: 10 / span 3;
  }
}

@media (max-width: 760px) {
  :root {
    --page-padding: 16px;
  }

  .section {
    padding: 56px 0;
  }

  body,
  p {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-header.is-open .site-nav,
  .nav-toggle {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 640px;
  }

  .hero-grid {
    padding-top: 132px;
  }

  .hero-content h1 {
    margin-bottom: 138px;
    max-width: 340px;
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .hero-content p {
    max-width: 338px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .intro-lead,
  .intro-copy,
  .expert-copy,
  .faq-title {
    max-width: 340px;
  }

  .intro-lead h2,
  .expert-copy h2,
  .faq-title h2 {
    max-width: 340px;
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .stats,
  .service-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 32px;
  }

  .stats article {
    min-height: auto;
    padding: 0 0 34px;
    border-left: 0;
    border-bottom: 1px solid rgba(12, 71, 146, 0.24);
  }

  .stats article:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .stats article:last-child {
    border-bottom: 0;
  }

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

  .expert-photo,
  .expert-side,
  .footer-brand,
  .footer-nav,
  .footer-contacts {
    grid-column: 1;
  }

  .expert-photo {
    display: none;
  }

  .expert-card {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 32px;
  }

  .expert-cards {
    grid-template-columns: 1fr;
  }

  .faq-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .faq-list {
    border-top: 0;
  }

  .faq-item:last-child {
    border-bottom: 0;
  }

  .faq-item img {
    order: -1;
  }

  .contact-panel {
    min-height: 0;
    aspect-ratio: auto;
    padding: 24px;
    overflow: hidden;
  }

  .contact-illustration {
    aspect-ratio: 1;
  }

  .contact-copy {
    max-width: none;
    margin-bottom: 34px;
  }

  .contact-copy h2 {
    max-width: none;
    font-size: 28px;
    line-height: 1;
  }

  .contact-copy p:last-child {
    font-size: 18px;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    min-height: 38px;
    font-size: 15px;
  }

  .stats p,
  .service-card p,
  .process-step p,
  .expert-card p,
  .faq-item p {
    font-size: 15px;
  }

  .consent {
    gap: 14px !important;
  }

  .consent span {
    font-size: 12px;
  }

  .legal-shell {
    width: min(100% - 32px, 920px);
    padding: 24px 0 56px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 24px;
  }

  .legal-header img {
    width: 190px;
  }

  .legal-content {
    padding-top: 36px;
  }

  .legal-content h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    margin-top: 34px;
    font-size: 22px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-brand img {
    margin-bottom: 34px;
  }
}
