/* BilekPay yasal sayfalari - ortak stil.
   privacy.html ve kunye.html stillerini satir satir tekrarlamamak icin
   ayrildi; nginx /assets/ dizinini statik servis ediyor. */
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #4f46e5;
  --border: #e5e7eb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  padding: 24px;
}
.page {
  max-width: 920px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
h1, h2, h3 { color: var(--text); margin: 0 0 10px; }
h1 { font-size: 1.8rem; }
h2 { font-size: 1.18rem; margin-top: 28px; }
h3 { font-size: 1rem; margin-top: 18px; }
p, li { margin: 0 0 12px; }
ul, ol { padding-left: 22px; }
.muted { color: var(--muted); font-size: 0.95rem; }
table { width: 100%; border-collapse: collapse; margin-top: 12px; }
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th { width: 34%; color: var(--muted); font-weight: 600; }
a { color: var(--primary); }
.note {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 18px 0;
  font-size: 0.94rem;
}
.foot {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
.foot a { margin-right: 14px; white-space: nowrap; }
@media (max-width: 600px) {
  th, td { display: block; width: 100%; }
  th { border-bottom: none; padding-bottom: 0; }
  td { padding-top: 2px; }
}
