:root {
  --navy: #04172b;
  --navy-soft: #0b2944;
  --orange: #e64b16;
  --sky: #75d0e9;
  --ink: #071a2e;
  --muted: #5f6d79;
  --cream: #f4efe7;
  --line: #dce2e5;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.68;
}

a {
  color: #08647d;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--orange);
}

.wrap {
  width: min(900px, calc(100% - 36px));
  margin-inline: auto;
}

.policy-header {
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
}

.policy-header .wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  display: block;
  width: 142px;
  height: auto;
}

.policy-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.policy-nav a {
  color: var(--white);
  text-decoration: none;
}

.policy-nav a[aria-current="page"] {
  color: var(--sky);
}

.policy-card {
  margin-block: 48px;
  padding: clamp(28px, 6vw, 58px);
  background: var(--white);
  border-top: 6px solid var(--orange);
  box-shadow: 0 20px 60px rgb(4 23 43 / 9%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 7vw, 66px);
  line-height: .98;
  letter-spacing: -.05em;
}

.intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.notice {
  margin: 30px 0 12px;
  padding: 22px 24px;
  background: #eaf7fb;
  border-left: 4px solid var(--sky);
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.notice p {
  margin: 0;
}

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

h2 {
  margin: 0 0 10px;
  font-size: clamp(23px, 4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

h3 {
  margin: 24px 0 4px;
  font-size: 17px;
}

p,
li {
  color: var(--muted);
  font-size: 15px;
}

p {
  margin: 10px 0;
}

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

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

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: var(--navy);
}

.button:hover {
  color: var(--white);
  filter: brightness(1.05);
}

.policy-footer {
  padding: 8px 0 42px;
  text-align: center;
}

.policy-footer p {
  margin: 0;
  font-size: 12px;
}

@media (max-width: 700px) {
  .policy-header .wrap {
    min-height: 0;
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    font-size: 10px;
  }

  .policy-card {
    margin-block: 24px;
  }
}
