/* Pages légales publiques — GIDA / Le Démarcheur du Sahel */
:root {
  --green: #0f7a3d; --green-d: #0a5c2d; --ink: #16241c; --muted: #5b6b62;
  --line: #e2e8e4; --bg: #f5f7f6; --card: #fff; --err: #c62828; --err-bg: #fdecea;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body { font-family: "Segoe UI", system-ui, -apple-system, sans-serif; color: var(--ink);
  background: var(--bg); line-height: 1.6; }
.wrap { max-width: 820px; margin: 0 auto; padding: 24px 20px 64px; }
header.top { background: var(--green); color: #fff; padding: 28px 20px; }
header.top .wrap { padding-bottom: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.18);
  display: grid; place-items: center; font-weight: 800; }
header.top h1 { margin: 14px 0 4px; font-size: 26px; }
header.top .sub { opacity: .85; font-size: 14px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px;
  box-shadow: 0 1px 3px rgba(16,40,25,.06); margin-top: 18px; }
h2 { font-size: 19px; margin: 26px 0 8px; }
h3 { font-size: 16px; margin: 18px 0 6px; }
p, li { font-size: 15px; }
ul { padding-left: 20px; }
a { color: var(--green-d); }
.meta { color: var(--muted); font-size: 13px; }
.callout { background: #eef4f0; border-left: 4px solid var(--green); border-radius: 8px;
  padding: 12px 16px; margin: 16px 0; font-size: 14px; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; position: relative; padding: 10px 0 10px 42px; border-bottom: 1px solid var(--line); }
.steps li:last-child { border-bottom: 0; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 10px; width: 28px; height: 28px;
  background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.btn { display: inline-block; background: var(--green); color: #fff; text-decoration: none; padding: 12px 20px;
  border-radius: 10px; font-weight: 600; margin-top: 8px; }
.danger { background: var(--err-bg); border-left-color: var(--err); }
table { width: 100%; border-collapse: collapse; margin: 8px 0; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
footer { text-align: center; color: var(--muted); font-size: 13px; padding: 24px; }
footer a { margin: 0 8px; }
