:root{
  --bg: #f9f9f9;
  --card-bg: #fff;
  --muted: #666;
  --accent: #2196F3;
  --text: #333;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  padding: 0;
  background-color: var(--bg);
}

/* Main content container / card */
section.privacy-card,
section {
  display: block;
  background: var(--card-bg);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  max-width: 880px;
  margin: 120px auto 60px auto;
  width: 90%;
}

/* Headings & text */
h1 { color: #222; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top:0; }
h2 { color: #444; margin-top: 30px; }
p { margin: 15px 0; color: var(--text); }

/* Highlight block */
.highlight {
  background-color: #e7f3ff;
  padding: 15px;
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  margin: 20px 0;
}

/* Links */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Footer/header placeholders */
#header, #footer { display:block; }

/* Responsive tweak */
@media (max-width: 600px) {
  section.privacy-card,
  section { padding: 20px; margin: 80px 12px; width: calc(100% - 24px); }
}
