:root {
  color: #17211d;
  background: #f3f6f2;
  font-family: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-image:
    linear-gradient(rgba(20, 82, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 82, 64, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

a {
  color: #126f59;
  font-weight: 750;
  text-underline-offset: 3px;
}

.policy-shell {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 32px 0 72px;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #cbd9d3;
  padding-bottom: 22px;
}

.policy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #17211d;
  text-decoration: none;
}

.policy-brand strong {
  display: block;
  color: #17211d;
  font-size: 20px;
}

.policy-brand small {
  display: block;
  color: #5e7068;
  font-size: 12px;
}

.back-link {
  white-space: nowrap;
}

main {
  padding-top: 44px;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
}

.lede {
  max-width: 680px;
  margin: 20px 0 36px;
  color: #34483f;
  font-size: 18px;
  line-height: 1.6;
}

.effective {
  color: #6c7d75;
  font-size: 13px;
  font-weight: 750;
}

section {
  border-top: 1px solid #cbd9d3;
  padding: 28px 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

p,
li {
  color: #34483f;
  line-height: 1.65;
}

ul,
ol {
  padding-left: 22px;
}

.notice {
  border-left: 4px solid #18a17f;
  background: #e5f2ed;
  padding: 16px 18px;
}

.identity-panel,
.contact-panel {
  margin: 8px 0 28px;
  border: 1px solid #b8d0c6;
  border-radius: 8px;
  background: #eaf4f0;
  padding: 22px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

.section-kicker {
  margin: 0 0 6px;
  color: #126f59;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-list {
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid #cbd9d3;
  border-radius: 8px;
}

.fact-list div {
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  border-bottom: 1px solid #cbd9d3;
}

.fact-list div:last-child {
  border-bottom: 0;
}

.fact-list dt,
.fact-list dd {
  margin: 0;
  padding: 13px 15px;
  line-height: 1.5;
}

.fact-list dt {
  background: #eaf0ed;
  color: #50645b;
  font-weight: 750;
}

.fact-list dd {
  overflow-wrap: anywhere;
  font-weight: 650;
}

.button-link {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #126f59;
  padding: 10px 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.button-link:hover {
  background: #0e5948;
}

.button-link:focus-visible,
a:focus-visible {
  outline: 3px solid #f0c84b;
  outline-offset: 3px;
}

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

.plan-status {
  margin: 8px 0 28px;
}

.plan-status .button-link {
  margin-top: 4px;
}

.comparison-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #cbd9d3;
  border-radius: 8px;
  background: #fff;
}

.comparison-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid #dbe5e0;
  padding: 14px 16px;
  color: #34483f;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  background: #eaf0ed;
  color: #17211d;
  font-size: 13px;
}

.comparison-table tbody th {
  width: 58%;
  color: #17211d;
  font-weight: 750;
}

.fine-print {
  color: #5e7068;
  font-size: 13px;
}

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  border-top: 1px solid #cbd9d3;
  padding-top: 22px;
  color: #6c7d75;
  font-size: 12px;
}

@media (max-width: 560px) {
  .policy-shell {
    width: min(100% - 24px, 820px);
    padding-top: 16px;
  }

  .policy-header {
    align-items: flex-start;
  }

  .policy-brand small {
    display: none;
  }

  main {
    padding-top: 34px;
  }

  h1 {
    font-size: 36px;
  }

  .contact-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .fact-list div {
    display: block;
  }

  .fact-list dt {
    padding-bottom: 4px;
  }

  .fact-list dd {
    padding-top: 4px;
  }

  .comparison-table {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-table table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .comparison-table tbody {
    display: grid;
    gap: 10px;
  }

  .comparison-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid #cbd9d3;
    border-radius: 8px;
    background: #fff;
  }

  .comparison-table tbody th {
    grid-column: 1 / -1;
    border-bottom: 1px solid #dbe5e0;
    background: #eaf0ed;
  }

  .comparison-table tbody td {
    border-bottom: 0;
    padding-top: 10px;
    font-weight: 650;
  }

  .comparison-table tbody td + td {
    border-left: 1px solid #dbe5e0;
  }

  .comparison-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #6c7d75;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }
}
