:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102033;
  background: #f7fbff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 164, 197, 0.16), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #eef6fb 42%, #ffffff 100%);
}

main {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 24px 72px;
}

.brand {
  display: inline-flex;
  width: 190px;
  margin-bottom: 44px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: #057b92;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #081827;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 720px;
  margin: 22px 0 18px;
  color: #43566c;
  font-size: 1.08rem;
  line-height: 1.65;
}

.updated {
  display: inline-flex;
  margin-bottom: 34px;
  color: #5c6c7c;
  font-size: 0.95rem;
  font-weight: 700;
}

article {
  padding: 28px 0;
  border-top: 1px solid rgba(16, 32, 51, 0.12);
}

h2 {
  margin: 0 0 12px;
  color: #081827;
  font-size: 1.28rem;
  line-height: 1.3;
  letter-spacing: 0;
}

p {
  margin: 0 0 12px;
  color: #33485f;
  font-size: 1rem;
  line-height: 1.72;
}

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

a {
  color: #057b92;
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  color: #035d70;
  text-decoration: underline;
}

.policy-table {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-table-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(220px, 2fr) minmax(160px, 1fr);
  border-top: 1px solid rgba(16, 32, 51, 0.1);
}

.policy-table-row:first-child {
  border-top: 0;
}

.policy-table-row span {
  padding: 14px 16px;
  color: #33485f;
  font-size: 0.95rem;
  line-height: 1.5;
}

.policy-table-row span:first-child,
.policy-table-head span {
  color: #081827;
  font-weight: 800;
}

.policy-table-head {
  background: rgba(7, 164, 197, 0.1);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(5, 123, 146, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 640px) {
  main {
    padding: 34px 18px 52px;
  }

  .brand {
    width: 154px;
    margin-bottom: 34px;
  }

  .intro {
    font-size: 1rem;
  }

  article {
    padding: 24px 0;
  }

  .policy-table-row,
  .policy-table-head {
    display: block;
  }

  .policy-table-head {
    display: none;
  }

  .policy-table-row span {
    display: block;
    padding: 12px 14px;
  }
}
