/* PetCare+ Pro – Legal pages */
:root {
  --bg: #faf9f7;
  --card: #fff;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #e85d04;
  --border: #e5e2de;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}
header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
header h1 { margin: 0 0 0.25rem; font-size: 1.5rem; }
header p { margin: 0; color: var(--muted); font-size: 0.9rem; }
nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
nav a:hover { text-decoration: underline; }
article { background: var(--card); padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
article h1 { font-size: 1.35rem; margin-top: 0; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
article h2 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
article h3 { font-size: 1.05rem; margin: 1.25rem 0 0.4rem; }
article p { margin: 0.5rem 0; }
article ul { margin: 0.5rem 0; padding-left: 1.5rem; }
article li { margin: 0.25rem 0; }
article strong { font-weight: 600; }
article hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
article table { width: 100%; border-collapse: collapse; margin: 0.75rem 0; font-size: 0.9rem; }
article th, article td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; text-align: left; }
article th { background: var(--bg); font-weight: 600; }
.index-links { list-style: none; padding: 0; margin: 1rem 0; }
.index-links li { margin: 0.5rem 0; }
.index-links a { color: var(--accent); font-weight: 500; text-decoration: none; }
.index-links a:hover { text-decoration: underline; }
.footer-note { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; }
