/* Simple, clean, trustworthy styles for legal pages */
/* Color system: 
   - Primary: #0a66c2 (blue)
   - Foreground: #111827 (near-black)
   - Background: #f9fafb (off-white)
   - Border: #e5e7eb (light gray)
*/

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px;
}

.page-header {
  margin: 8px 0 16px 0;
}

h1 {
  margin: 0 0 8px 0;
  font-size: 1.875rem; /* 30px */
  line-height: 1.3;
  font-weight: 700;
}

.intro {
  margin: 0 0 16px 0;
  color: #374151;
}

h2 {
  font-size: 1.25rem; /* 20px */
  margin: 0 0 12px 0;
  line-height: 1.35;
}

section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

section:target {
  border-color: #0a66c2;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.15);
}

ul {
  padding-left: 20px;
}

.muted {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 16px 24px;
}

.footer-links a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 6px;
  border-radius: 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links a:focus {
  outline: 2px solid #0a66c2;
  outline-offset: 2px;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .container {
    padding: 16px;
  }
  h1 {
    font-size: 1.5rem; /* 24px */
  }
  h2 {
    font-size: 1.125rem; /* 18px */
  }
}
