:root {
  --navy: #111a31;
  --blue: #0c5de8;
  --lime: #c9f54b;
  --cream: #f7f5ef;
  --line: #e3e6eb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--cream);
  color: #273044;
  font-family: 'DM Sans', Arial, sans-serif;
}
.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  font: 800 12px Manrope;
}
.legal-brand span:first-child {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}
.legal-header > a:last-child {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.legal-main {
  width: min(900px, 90vw);
  margin: 55px auto 80px;
}
.legal-main > span {
  font-size: 12px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0;
}
.legal-main h1 {
  font: 800 12px/1.25 Manrope;
  color: var(--navy);
  letter-spacing: 0;
  margin: 13px 0 18px;
}
.legal-intro {
  font-size: 12px;
  line-height: 1.7;
  color: #667083;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}
.legal-main article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 24px;
  margin-top: 15px;
}
.legal-main h2 {
  font: 800 12px Manrope;
  color: var(--navy);
  margin: 0 0 10px;
}
.legal-main p,
.legal-main li {
  font-size: 12px;
  line-height: 1.75;
  color: #5d6676;
}
.legal-main a {
  color: var(--blue);
}
.legal-footer {
  background: var(--navy);
  color: #c2c9d5;
  text-align: center;
  padding: 25px;
  font-size: 12px;
}
.legal-main
  :where(
    a,
    button,
    input,
    select,
    textarea,
    label,
    th,
    td,
    p,
    span,
    small,
    strong,
    b,
    em,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6
  ),
.legal-header
  :where(
    a,
    button,
    input,
    select,
    textarea,
    label,
    p,
    span,
    small,
    strong,
    b,
    em,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6
  ),
.legal-footer {
  font-size: 12px !important;
  letter-spacing: 0 !important;
}
:where(.legal-main) h1 {
  font-size: clamp(34px, 6vw, 56px) !important;
}
:where(.legal-main) h2 {
  font-size: 20px !important;
}
:where(.legal-main) p,
:where(.legal-main) li {
  font-size: 15px !important;
}
.legal-main .legal-intro {
  font-size: 17px !important;
}
.legal-header a,
.legal-header strong {
  font-size: 14px !important;
}
@media (max-width: 600px) {
  .legal-header {
    padding: 14px 18px;
  }
  .legal-brand strong {
    display: none;
  }
  .legal-main {
    margin-top: 36px;
  }
  .legal-main article {
    padding: 20px;
  }
}
