body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  margin: 0;
  padding: 24px;
}

/* Main container */
main,
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Headings */
h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

/* Text */
p {
  line-height: 1.75;
  color: #374151;
  margin-bottom: 12px;
}

ul {
  padding-left: 20px;
  margin-top: 8px;
}

li {
  margin-bottom: 8px;
  line-height: 1.65;
  color: #374151;
}

/* Meta info (last updated, owner) */
.meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 28px;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  body {
    padding: 16px;
  }

  main,
  .legal-container {
    padding: 22px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }
}
