:root {
  --navy: #0b1929;
  --blue: #1a5ea8;
  --text: #22313f;
  --text-light: #5f6d7b;
  --bg: #f6f7f9;
  --border: #dde3ea;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #f9fafb 0%, #eef3f7 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--blue);
}

.shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  height: 64px;
  width: auto;
}

.back-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.legal-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(11, 25, 41, 0.08);
}

h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
}

.intro {
  margin-bottom: 28px;
  color: var(--text-light);
}

h2 {
  margin-top: 32px;
  color: var(--navy);
  font-size: 1.2rem;
}

p,
ul {
  margin: 0 0 16px;
}

ul {
  padding-left: 20px;
}

.footer-note {
  margin-top: 32px;
  color: var(--text-light);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-card {
    padding: 28px;
  }
}
