/* Legal pages: typography and layout. The legal text itself lives in the HTML. */

*, *::before, *::after { box-sizing: border-box; }

html { background: #fff; }

body {
  margin: 0 auto;
  max-width: 900px;
  padding: 32px 28px 70px;
  color: #2d2b2f;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.035em;
  color: #2d2b2f;
}

h1 { font-size: 42px; line-height: 1.1; margin: 52px 0 24px; }
h2 { font-size: 22px; line-height: 1.25; margin: 40px 0 12px; }
h3 { font-size: 17px; line-height: 1.3; margin: 26px 0 8px; }

p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }

a { color: #2d2b2f; text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #c34221; }
a:focus-visible { outline: 2px solid #fd5a31; outline-offset: 4px; }

.company-data { margin: 0 0 18px; line-height: 1.7; }
.company-data strong { font-weight: 600; }

.legal-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #dedddd;
  padding-bottom: 24px;
  margin-bottom: 35px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
}

.legal-navigation a { text-decoration: none; }
.legal-navigation .brand { font-weight: 700; }
.legal-navigation .legal-links { display: flex; gap: 20px; }
.legal-navigation .cta { color: #c34221; }

.updated { margin-top: 40px; }

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #dedddd;
  font-size: 15px;
  color: #535862;
}

.legal-footer .company-data { margin-bottom: 0; }

@media (max-width: 600px) {
  body { padding: 24px 22px 56px; }
  h1 { font-size: 34px; margin-top: 36px; }
  h2 { font-size: 20px; }
  .legal-navigation { flex-wrap: wrap; gap: 12px 20px; }
}
