:root {
  --ink: #0d1418;
  --ink-soft: #364852;
  --muted: #64737e;
  --surface: #ffffff;
  --surface-soft: #f4f7f3;
  --line: rgba(16, 24, 32, 0.11);
  --green: #0d7d63;
  --green-dark: #075643;
  --lime: #aee35f;
  --max-width: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdf8 0%, #f6f8f2 42%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: 0.95rem;
}

th,
td {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-soft);
}

.policy-shell,
.stackedit__html {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.stackedit__left {
  display: none;
}

.stackedit__right {
  width: 100%;
}

.stackedit__html {
  max-width: 920px;
}

.stackedit__html h1,
.policy-hero h1 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.stackedit__html h2,
.policy-section h2 {
  margin: 2.4rem 0 0.9rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.stackedit__html h3 {
  margin: 1.7rem 0 0.6rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.stackedit__html p,
.stackedit__html li,
.policy-hero p,
.section-note,
.policy-card p,
.policy-footer p {
  color: var(--ink-soft);
}

.stackedit__html ul,
.stackedit__html ol {
  padding-left: 1.4rem;
}

.stackedit__html li + li {
  margin-top: 0.45rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--green-dark);
}

.policy-hero {
  max-width: 850px;
  padding: 26px 0 20px;
}

.eyebrow,
.policy-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-section {
  padding: 22px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.policy-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: inherit;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(16, 24, 32, 0.06);
  text-decoration: none;
}

.policy-card:hover {
  border-color: rgba(13, 125, 99, 0.34);
}

.policy-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.policy-card p {
  margin: 0;
  font-size: 0.95rem;
}

.policy-footer {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
  .policy-shell,
  .stackedit__html {
    width: min(calc(100% - 28px), var(--max-width));
    padding-top: 32px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}
