:root {
  --bg: #000;
  --fg: #fff;
  --head-font: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --text-font: Helvetica, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
}

.page-legal {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 52px 0 52px;
}

.back-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.back-btn {
  display: inline-block;
  background: #f1f1f1;
  color: #000;
  text-decoration: none;
  font-family: var(--head-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.92rem;
}

.page-title {
  margin: 0 0 48px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--head-font);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.02;
}

.legal-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  font-family: var(--text-font);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.46;
}

.legal-copy p,
.legal-copy h2,
.legal-copy h3 {
  margin: 0 0 1.1em;
}

.legal-copy h2,
.legal-copy h3 {
  font-family: var(--head-font);
  font-size: 1em;
  font-weight: 700;
}

.legal-copy.centered {
  text-align: center;
}

.legal-copy .muted-italic {
  font-style: italic;
}

@media (max-width: 1024px) {
  .page-legal {
    padding-top: 34px;
  }

  .back-wrap {
    margin-bottom: 30px;
  }

  .page-title {
    margin-bottom: 32px;
  }

  .legal-copy {
    font-size: clamp(0.86rem, 3.2vw, 0.98rem);
    line-height: 1.42;
  }
}
