@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .visible {
    visibility: visible;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --blue: #0053a9;
  --pink: #bf0046;
  --ink: #111827;
  --muted: #586174;
  --paper: #f6f7fa;
  --line: #dce1e8;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--blue);
}
svg {
  fill: currentColor;
  width: 20px;
}
button,
input,
textarea,
select {
  font: inherit;
}
.site-header {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid #a50044;
  z-index: 20;
  background: #004d98f5;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 4.5vw;
  display: flex;
  position: sticky;
  top: 0;
}
.brand {
  letter-spacing: -0.02em;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  display: flex;
}
.brand img {
  background: #fff;
  border-radius: 50%;
  object-fit: contain;
  padding: 3px;
  width: 44px;
  height: 44px;
}
.site-header nav {
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
  display: flex;
}
.site-header nav a:hover {
  color: #edbb00;
}
.nav-cta {
  border: 1px solid #fff;
  border-radius: 2px;
  min-height: 44px;
  padding: 10px 16px;
}
.hero {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 6vw;
  min-height: calc(100vh - 84px);
  padding: 7vw 7vw 8vw;
  display: grid;
}
.eyebrow {
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px !important;
}
.hero h1 {
  letter-spacing: 0.012em;
  max-width: 1000px;
  margin: 18px 0 26px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.08;
}
.hero h1 em,
h2 em {
  color: var(--pink);
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead {
  color: var(--muted);
  max-width: 800px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.6;
}
.actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  display: flex;
}
.button {
  cursor: pointer;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 21px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}
.primary {
  background: var(--pink);
  color: #fff;
}
.primary:hover {
  background: #9e003a;
}
.ghost {
  border-color: var(--line);
  background: #fff;
}
.hero-card {
 /* background: #fff;*/
  color: var(--ink);
  border: 0;
  flex-direction: column;
  justify-content: center;
  min-height: 530px;
  padding: 36px 20px;
  display: flex;
  position: relative;
  overflow: visible;
}
.hero-card:before,
.hero-card:after {
  content: none;
}
.hero-card > img {
  z-index: 1;
 /* width: min(82%, 390px);*/
  margin: 0 auto 36px;
  position: relative;
}
.hero-specialties {
  z-index: 2;
  justify-content: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.orbit {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fff;
  border: 1px solid #0053a94d;
  border-radius: 999px;
  align-items: center;
  min-height: 44px;
  padding: 9px 15px;
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  display: inline-flex;
  position: static;
  box-shadow: 0 8px 24px #0000001f;
}
.orbit:hover {
  background: #edbb00;
  color: #111827;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px #004d9838;
}
.o3 {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.o5 {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.audiences {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.audiences a {
  border-right: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 7px;
  padding: 34px 4vw;
  transition: all 0.2s;
  display: grid;
}
.audiences a:last-child {
  border: 0;
}
.audiences a:hover {
  background: var(--blue);
  color: #fff;
}
.audiences span {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  grid-column: 1;
  font-size: 11px;
  font-weight: 800;
}
.audiences strong {
  font-size: 16px;
  line-height: 1.4;
}
.section {
  padding: 105px 7vw;
}
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}
.section-label span {
  color: var(--pink);
}
.section-label p {
  margin: 0;
}
.split {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  display: grid;
}
.section h2,
.contact h2 {
  letter-spacing: -0.045em;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.08;
}
.prose {
  color: var(--muted);
  font-size: 18px;
}
.prose p:first-child {
  margin-top: 0;
}
.text-link {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  gap: 18px;
  margin-top: 14px;
  font-weight: 800;
  display: inline-flex;
}
.facts {
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 75px;
  display: grid;
}
.facts div {
  background: var(--paper);
  flex-direction: column;
  padding: 32px;
  display: flex;
}
.facts strong {
  color: var(--blue);
  letter-spacing: -0.05em;
  font-size: 48px;
}
.facts span {
  color: var(--muted);
  max-width: 260px;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.section-heading {
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 8vw;
  display: grid;
}
.section-heading p {
  color: #aeb7c6;
  font-size: 17px;
}
.service-grid {
  border-top: 1px solid #394150;
  border-left: 1px solid #394150;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  display: grid;
}
.service-grid article {
  border-bottom: 1px solid #394150;
  border-right: 1px solid #394150;
  min-height: 260px;
  padding: 38px;
  transition: all 0.2s;
}
.service-grid article:hover {
  background: var(--blue);
}
.service-grid article > span {
  color: #8ea0ba;
  font-size: 12px;
}
.service-grid h3 {
  margin: 22px 0 10px;
  font-size: 27px;
}
.service-grid p {
  color: #bbc3cf;
  max-width: 500px;
}
.service-grid small {
  color: #7f8ba0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-grid article:hover p,
.service-grid article:hover small {
  color: #fff;
}
.partner {
  background: #fff;
}
.partner-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  display: grid;
}
.partner-grid ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.partner-grid li {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.partner-grid li:before {
  content: "—";
  color: var(--pink);
  margin-right: 12px;
}
.training {
  background: var(--blue);
  color: #fff;
}
.training-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  display: grid;
}
.training-grid > div > p {
  color: #dcecff;
  max-width: 620px;
  font-size: 18px;
}
.topic-list {
  border-top: 1px solid #ffffff59;
  border-left: 1px solid #ffffff59;
  grid-template-columns: 1fr 1fr;
  display: grid;
}
.topic-list span {
  border-bottom: 1px solid #ffffff59;
  border-right: 1px solid #ffffff59;
  padding: 26px 20px;
  font-weight: 750;
}
.method-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  display: grid;
}
.method-grid article {
  border-top: 3px solid var(--pink);
  padding-top: 22px;
}
.method-grid article > span {
  color: var(--blue);
  font-size: 12px;
}
.method-grid h3 {
  font-size: 24px;
}
.method-grid p {
  color: var(--muted);
}
.featured {
  background: #fff;
}
.featured-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 8vw;
  display: grid;
}
.featured-heading h2 {
  max-width: 800px;
}
.featured-heading .prose p {
  margin-top: 0;
}
.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 68px;
  display: grid;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) #e7edf4;
  padding-bottom: 18px;
}
.featured-card {
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  background: #fff;
  min-height: 460px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.featured-card:nth-child(2),
.featured-card:nth-child(4) {
  border-top-color: var(--pink);
}
.featured-card:hover {
  border-color: #9db9d7;
  transform: translateY(-5px);
  box-shadow: 0 18px 40px #004d9817;
}
.featured-card > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.featured-card__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.featured-card__body > span:first-child {
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.featured-card strong {
  margin: 18px 0 12px;
  font-size: 23px;
  line-height: 1.25;
}
.featured-card__body > span:not(:first-child):not(.resource-action) {
  color: var(--muted);
}
.resource-action {
  color: var(--blue);
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  font-weight: 800;
  display: inline-flex;
}
.contact {
  background: var(--pink);
  color: #fff;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: 110px 7vw;
  display: grid;
}
.contact > div > p {
  max-width: 560px;
  font-size: 18px;
}
.contact .eyebrow {
  color: #fff;
}
.contact-links {
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
  display: flex;
}
.contact-links a {
  align-items: center;
  gap: 10px;
  font-weight: 750;
  display: flex;
}
.contact form {
  color: var(--ink);
  background: #fff;
  padding: 36px;
}
.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}
label {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 19px;
  font-size: 12px;
  font-weight: 800;
  display: block;
}
input,
select,
textarea {
  background: #f7f8fa;
  border: 0;
  border-bottom: 1px solid #aeb4bf;
  outline: none;
  width: 100%;
  margin-top: 7px;
  padding: 12px 10px;
  display: block;
}
.captcha-field {
  border: 1px solid var(--line);
  margin: 6px 0 22px;
  padding: 18px;
}
.captcha-field > label {
  margin-bottom: 10px;
}
.captcha-field strong {
  color: var(--blue);
  display: block;
  margin-top: 7px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.captcha-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  display: grid;
}
.captcha-row input {
  margin-top: 0;
}
.captcha-refresh {
  background: #edf3fa;
  color: var(--blue);
  border: 1px solid #b9cee5;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.captcha-refresh:hover {
  background: var(--blue);
  color: #fff;
}
.captcha-field small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.form-feedback {
  color: #9e003a;
  margin: 16px 0 0;
  font-weight: 700;
}
.form-feedback:empty {
  display: none;
}
.form-success {
  color: var(--ink);
  background: #fff;
  border-left: 6px solid #004d98;
  align-self: center;
  padding: 42px 36px;
  box-shadow: 0 18px 45px #45001938;
}
.form-success strong {
  color: #004d98;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.2;
}
.form-success p {
  color: var(--muted);
  margin: 18px 0 0;
  font-size: 18px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 2px 0 var(--blue);
}
.check {
  text-transform: none;
  letter-spacing: 0;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  display: flex;
}
.check input {
  width: auto;
  margin: 4px 0;
}
.check a {
  text-decoration: underline;
}
.light {
  background: var(--ink);
  color: #fff;
  width: 100%;
}
.hp {
  position: absolute !important;
  left: -9999px !important;
}
.floating-wa {
  background: #25d366;
  color: #fff;
  z-index: 10;
  border: 2px solid #fff;
  border-radius: 50%;
  place-items: center;
  width: 48px;
  height: 48px;
  display: grid;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 8px 28px #0003;
}
.floating-wa:hover {
  background: #128c4a;
  transform: translateY(-3px);
}
.floating-wa svg {
  width: 27px;
  height: 27px;
}
footer {
  color: #fff;
  background: #0a0f18;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 35px;
  padding: 55px 7vw;
  display: grid;
}
footer p {
  color: #9da7b7;
  font-size: 14px;
}
footer > div {
  gap: 16px;
  font-size: 13px;
  display: flex;
}
footer small {
  color: #6f7b8c;
  border-top: 1px solid #29303c;
  grid-column: 1/-1;
  padding-top: 22px;
}
@media (width<=1050px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 70px 6vw;
  }
  .hero-card {
    min-height: 420px;
  }
  .audiences {
    grid-template-columns: 1fr;
  }
  .audiences a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .split,
  .section-heading,
  .featured-heading,
  .partner-grid,
  .training-grid,
  .contact,
  .facts,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-grid {
    grid-template-columns: repeat(5, minmax(270px, 78vw));
    scroll-snap-type: x proximity;
  }
  .featured-card {
    scroll-snap-align: start;
  }
  .contact {
    gap: 55px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer small {
    grid-column: auto;
  }
}
@media (width<=560px) {
  .site-header {
    height: 72px;
    padding: 0 20px;
  }
  .hero {
    padding: 50px 20px 70px;
  }
  .hero h1 {
    letter-spacing: 0.006em;
    overflow-wrap: break-word;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.12;
  }
  .hero-card {
    min-height: auto;
    padding: 32px 0;
  }
  .hero-card > img {
    width: min(88%, 340px);
  }
  .hero-specialties {
    gap: 10px;
  }
  .orbit {
    min-height: 44px;
    padding: 11px 15px;
  }
  .section,
  .contact {
    padding: 75px 20px;
  }
  .section-label {
    margin-bottom: 40px;
  }
  .section h2,
  .contact h2 {
    font-size: 38px;
  }
  .service-grid article {
    padding: 28px;
  }
  .method-grid,
  .topic-list,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact form {
    padding: 24px;
  }
  .captcha-row {
    grid-template-columns: 1fr;
  }
  .captcha-refresh {
    width: 100%;
  }
  .actions .button {
    width: 100%;
  }
  footer {
    padding: 50px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 90px 24px 120px;
}
.legal-page .back {
  color: #0053a9;
  font-weight: 800;
}
.legal-page h1 {
  letter-spacing: -0.045em;
  margin: 55px 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
}
.legal-page h2 {
  margin-top: 42px;
  font-size: 25px;
}
.legal-page p,
.legal-page li {
  color: #586174;
  font-size: 17px;
}
.legal-page .notice {
  background: #fff;
  border-left: 4px solid #bf0046;
  margin: 30px 0;
  padding: 12px 20px;
}
.legal-page a {
  text-decoration: underline;
}
