:root {
  --bg: #eef1f7;
  --text: #1f2937;
  --muted: #64748b;
  --card: #ffffff;
  --line: #dbe2f0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --shadow: 0 8px 26px rgba(2, 6, 23, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.top {
  padding: 24px 0 14px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e2e8f0;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.lead {
  margin: 12px 0 0;
  color: var(--muted);
}

.nav {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  align-items: start;
  padding: 14px 0 52px;
}

.card {
  background: var(--card);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.card h3 {
  margin: 20px 0 8px;
  font-size: 1.02rem;
}

.card p {
  margin: 8px 0;
}

.card ul {
  margin: 8px 0 14px;
  padding-left: 20px;
}

.card li + li {
  margin-top: 4px;
}

.muted {
  color: var(--muted);
}

.warn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #bfdbfe;
  background: #eff6ff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95rem;
}

.table th,
.table td {
  border: 1px solid var(--line);
  padding: 8px 9px;
  text-align: left;
  vertical-align: top;
}

.table th {
  background: #f8fafc;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 18px;
}

.footer .container {
  padding: 14px 0 18px;
}

.footer a {
  color: #e2e8f0;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #0f172a;
  color: #e2e8f0;
  border-top: 1px solid #1e293b;
  box-shadow: 0 -10px 24px rgba(2, 6, 23, 0.25);
}

.cookie-consent-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-consent-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #cbd5e1;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-consent-actions button,
.cookie-consent-actions a {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.cookie-consent-actions .btn-primary {
  background: #2563eb;
  color: #fff;
}

.cookie-consent-actions .btn-light {
  background: #e2e8f0;
  color: #0f172a;
}

@media (max-width: 940px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .container,
  .cookie-consent-inner {
    width: calc(100% - 24px);
  }
}
