/* Shared styling for the legal pages (privacy, terms, eula, disclaimer).
   Plain static CSS, no build step and no CDN — these are simple documents,
   not the marketing site, so they don't need Tailwind. Colors match the
   brand palette used across docs/index.html, docs/project-site, and
   demo-apply-form (kept in sync by hand, same as those). */

:root {
  --brand: #4B79F7;
  --brand-dark: #3461E8;
  --navy: #0D1B3E;
  --surface: #F4F7FF;
  --text: #1A2333;
  --text-muted: #55607A;
  --border: #E2E8F5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #FFFFFF;
  line-height: 1.6;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.legal-header a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.legal-header a:hover {
  color: var(--brand-dark);
}

.legal-header img {
  width: 24px;
  height: 24px;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  color: var(--navy);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

h2 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p, li {
  color: var(--text);
}

p strong:first-child {
  color: var(--text-muted);
}

a {
  color: var(--brand-dark);
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}
