/* ==========================================================================
   Minoom — content pages (Support / Privacy / Terms / Delete data)
   Matches the original site brand: #145c88 + background-tile, Dosis wordmark.
   ========================================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Dosis', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.65;
  color: #fff;
  background: #145c88 url('../img/background-tile.png');
  background-size: 700px;
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: #fff; }

img { display: block; max-width: 100%; }

/* ---------- Header ---------- */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  max-width: 900px; margin: 0 auto; padding: 28px 24px 8px;
}
.page-brand { display: flex; align-items: center; gap: 12px; }
.page-brand img.logo { height: 40px; width: auto; }
.page-brand img.wordmark { height: 20px; width: auto; }
.page-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.page-nav a {
  color: rgba(255,255,255,.85); text-decoration: none; font-weight: 700;
  font-size: 1rem; transition: color .2s ease;
}
.page-nav a:hover, .page-nav a.active { color: #fff; }

/* ---------- Title band ---------- */
.page-title { max-width: 900px; margin: 0 auto; padding: 24px 24px 0; }
.page-title h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0; color: #fff; }
.page-title .updated { color: rgba(255,255,255,.75); font-weight: 600; margin-top: 6px; }

/* ---------- Content card ---------- */
.card {
  max-width: 900px; margin: 28px auto 56px; padding: 44px 48px 52px;
  background: #fff; color: #2b3a45;
  border-radius: 18px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.5);
}
.card h2 {
  font-size: 1.5rem; font-weight: 800; color: #145c88;
  margin: 2em 0 .5em;
}
.card h2:first-child { margin-top: 0; }
.card h3 { font-size: 1.2rem; font-weight: 700; color: #1d2b36; margin: 1.6em 0 .4em; }
.card p, .card li { font-size: 1.05rem; color: #3a4a55; }
.card a { color: #145c88; font-weight: 700; }
.card ul { padding-left: 1.3em; }
.card li { margin: .4em 0; }
.card strong { color: #1d2b36; }

.lead { font-size: 1.12rem; }

.callout {
  background: #f0f8ff; border-left: 4px solid #145c88;
  border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 24px 0;
  color: #2b3a45;
}

.toc {
  background: #f7fbff; border: 1px solid rgba(20,92,136,.14);
  border-radius: 14px; padding: 20px 26px; margin: 0 0 28px;
}
.toc strong { display: block; color: #145c88; margin-bottom: 8px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc a { color: #145c88; }

.btn {
  display: inline-block; background: #145c88; color: #fff !important;
  font-weight: 800; text-decoration: none; padding: 14px 30px;
  border-radius: 999px; transition: background .2s ease, transform .15s ease;
}
.btn:hover { background: #0e4667; transform: translateY(-2px); }

/* ---------- Footer ---------- */
.page-footer {
  max-width: 900px; margin: 0 auto; padding: 0 24px 48px;
  color: rgba(255,255,255,.8); text-align: center; font-weight: 600;
}
.page-footer a { color: #fff; text-decoration: none; font-weight: 700; }
.page-footer a:hover { text-decoration: underline; }
.page-footer .links { margin-bottom: 10px; }
.page-footer .links a { margin: 0 10px; }

@media (max-width: 620px) {
  .card { padding: 32px 24px 40px; margin: 20px 14px 40px; border-radius: 14px; }
  .page-header { padding: 20px 18px 4px; }
  .page-title { padding: 16px 20px 0; }
}
