:root {
  --co-orange: #ff9900;
  --co-orange-dark: #b96e00;
  --co-black: #111111;
  --co-text: #1e252d;
  --co-muted: #66717c;
  --co-line: #d9dde3;
  --co-surface: #f5f7f9;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--co-surface);
  color: var(--co-text);
}

body {
  min-height: 100%;
  margin: 0;
}

.policy-shell {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px 18px;
}

.policy-document {
  overflow: hidden;
  border: 1px solid var(--co-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 35, 52, 0.1);
}

.policy-header {
  padding: 34px;
  border-top: 5px solid var(--co-orange);
  background: var(--co-black);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffd38a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.updated {
  margin: 14px 0 0;
  color: #d9e1e8;
  font-size: 14px;
}

section {
  padding: 26px 34px;
  border-top: 1px solid var(--co-line);
}

h2 {
  margin: 0 0 12px;
  color: #15202b;
  font-size: 20px;
  line-height: 1.25;
}

p,
li {
  color: #425160;
  font-size: 15px;
  line-height: 1.65;
}

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 12px;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

strong {
  color: #263442;
}

a {
  color: var(--co-orange-dark);
  font-weight: 700;
}

a:focus {
  outline: 3px solid rgba(255, 153, 0, 0.26);
  outline-offset: 2px;
}

@media (max-width: 680px) {
  .policy-shell {
    padding: 16px;
  }

  .policy-header,
  section {
    padding: 24px;
  }

  h1 {
    font-size: 31px;
  }
}
