:root {
  --primary: #041632;
  --accent: #fd761a;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --line: #d9dce1;
  --text: #191c1e;
  --muted: #555a61;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  color: white;
  background: var(--primary);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  object-fit: contain;
}

.legal-header > a:not(.brand) {
  color: #d7e2ff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.eyebrow {
  color: #9d4300;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: clamp(36px, 7vw, 58px);
  line-height: 1;
}

h2 {
  margin: 34px 0 10px;
  color: var(--primary);
  font-size: 22px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page a {
  color: #9d4300;
  font-weight: 800;
}

.consent-card {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(4, 22, 50, 0.08);
}

.consent-card h2 {
  margin-top: 0;
}

.consent-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.consent-form label {
  display: grid;
  gap: 7px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.consent-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: #f2f4f6;
  font: inherit;
  font-weight: 600;
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--accent);
}

.consent-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: #341100;
  background: var(--accent);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.consent-disclosure {
  margin-bottom: 0;
  font-size: 15px;
}
