/* Оформление юридических документов: тёмный фон, serif-заголовки,
   крупный текст — читается внутри Telegram как статья. */

:root {
  --bg: #000000;
  --text: #e8e8e8;
  --muted: #8a8a8a;
  --accent: #6ab7ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font: 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 28px 20px 60px;
  max-width: 760px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.date {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  margin: 36px 0 16px;
}

ul { list-style: none; }

li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
}

li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--muted);
}

li b { font-weight: 600; }

p { margin-bottom: 14px; }

a { color: var(--accent); }

.final {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid #222;
  color: var(--muted);
  font-size: 16px;
}

table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; }
td { padding: 9px 0; border-bottom: 1px solid #1c1c1c; vertical-align: top; }
td:first-child { color: var(--muted); padding-right: 16px; white-space: nowrap; }
