:root {
  --ink: #1d1d1b;
  --muted: #6f6d66;
  --paper: #f4f1e9;
  --white: #fff;
  --orange: #ff6038;
  --lime: #d9ff70;
  --line: #d8d4ca;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}

a { color: inherit; }

.policy-header {
  min-height: 80px;
  padding: 0 max(5vw, 24px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.back-link span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: .2s ease;
}

.back-link:hover span { background: var(--orange); color: white; border-color: var(--orange); }

.document-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.policy-layout {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.policy-content { width: 100%; min-width: 0; }

.policy-content p {
  margin: 0 0 16px;
  color: #4f4e49;
  font: 400 15px/1.75 Manrope, Arial, sans-serif;
}

.policy-content > p:first-child {
  margin: 0;
  color: var(--ink);
  text-align: left;
  font: 600 clamp(38px, 4.6vw, 67px)/1.04 Unbounded, sans-serif;
  letter-spacing: -.055em;
}

.policy-content > p:nth-child(2) {
  margin: 15px 0 55px;
  color: var(--orange);
  text-align: left;
  font: 600 18px/1.4 Manrope, sans-serif;
}

.policy-content .p4 {
  margin: 58px 0 23px;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font: 700 24px/1.3 Manrope, sans-serif;
  letter-spacing: -.025em;
}

.policy-content .p5 {
  margin-top: 45px;
  color: var(--ink);
  font-size: 18px;
}

.policy-content table {
  width: 100%;
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.35);
}

.policy-content td {
  padding: 17px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.policy-content tr:last-child td { border-bottom: 0; }
.policy-content td:first-child { width: 29%; background: rgba(255,255,255,.42); }
.policy-content td p { margin: 0; font-size: 13px; line-height: 1.55; overflow-wrap: anywhere; }
.policy-content td:first-child p { color: var(--ink); }

.policy-footer {
  padding: 28px max(5vw, 24px);
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.policy-footer p { margin: 0; color: #aaa; font-size: 12px; }
.policy-footer a { color: white; font-size: 12px; font-weight: 700; text-decoration: none; }

@media (max-width: 820px) {
  .policy-layout { width: min(760px, calc(100% - 40px)); padding: 60px 0 90px; }
  .policy-content > p:first-child { font-size: clamp(36px, 8vw, 56px); }
}

@media (max-width: 560px) {
  .policy-header { min-height: 68px; }
  .document-label { display: none; }
  .policy-layout { width: auto; margin: 0 18px; padding: 42px 0 72px; }
  .policy-content > p:first-child { font-size: clamp(29px, 9vw, 38px); line-height: 1.08; overflow-wrap: anywhere; }
  .policy-content > p:nth-child(2) { margin-bottom: 42px; }
  .policy-content p { font-size: 14px; line-height: 1.7; }
  .policy-content .p4 { margin-top: 46px; font-size: 21px; }
  .policy-content table, .policy-content tbody, .policy-content tr, .policy-content td { display: block; width: 100%; }
  .policy-content tr:not(:last-child) { border-bottom: 1px solid var(--line); }
  .policy-content td, .policy-content td:first-child { width: 100%; border: 0; padding: 12px 15px; }
  .policy-content td:first-child { padding-bottom: 3px; }
  .policy-content td:last-child { padding-top: 3px; }
  .policy-footer { align-items: flex-start; flex-direction: column; gap: 15px; }
}
