:root {
  --bg: #f3f4f6;
  --card: #ffffff;
  --text: #1f2937;
  --line: #d8dde4;
  --accent: #0f57b4;
  --muted: #4b5563;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: clamp(14px, 2.2vw, 28px);
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.policy-shell {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.policy-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(15, 87, 180, 0.28);
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
}

.back-button:hover {
  background: #0b4a99;
  box-shadow: 0 4px 10px rgba(15, 87, 180, 0.32);
}

.back-button:active {
  transform: translateY(1px);
}

h1 {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: clamp(1.02rem, 1.53vw, 1.36rem);
  line-height: 1.2;
}

.meta {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

section {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 6px;
  color: #0b3f86;
  font-size: 1rem;
  line-height: 1.3;
}

h3 {
  margin: 12px 0 6px;
  color: #123e78;
  font-size: 0.96rem;
  line-height: 1.35;
}

p {
  margin: 0 0 6px;
  font-size: 0.96rem;
  line-height: 1.45;
}

ul {
  margin: 0 0 6px;
  padding-left: 18px;
}

li {
  margin: 0 0 4px;
  font-size: 0.96rem;
  line-height: 1.4;
}

.policy-definitions {
  margin: 0 0 6px;
}

.policy-definitions dt {
  margin-top: 8px;
  font-weight: 800;
  color: #123e78;
}

.policy-definitions dd {
  margin: 2px 0 0 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 6px;
  font-size: 0.93rem;
}

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

.policy-table th {
  background: #f3f7fd;
  color: #123e78;
  font-weight: 800;
}

.policy-table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}

.inline-list {
  list-style: none;
  padding-left: 0;
}

.inline-list li {
  margin-bottom: 4px;
}
