:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #18322e;
  background: #f8faf7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: #157e66;
}
a:focus-visible {
  outline: 3px solid #4caa85;
  outline-offset: 4px;
  border-radius: 3px;
}
.site-header,
footer {
  max-width: 1040px;
  margin: auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-header {
  border-bottom: 1px solid #e0e9e3;
}

.site-header {
  position: relative;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.primary-nav a,
.mobile-nav a {
  border-radius: 7px;
  color: #526b5b;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 7px;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a[aria-current='page'],
.mobile-nav a:hover,
.mobile-nav a[aria-current='page'] {
  background: #eef7f0;
  color: #13745d;
}
.mobile-nav {
  display: none;
  position: relative;
  margin-left: auto;
}
.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid #dbe9df;
  border-radius: 8px;
  color: #285f4c;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 12px;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav summary::after {
  content: ' +';
}
.mobile-nav[open] summary::after {
  content: ' −';
}
.mobile-nav nav {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: min(250px, calc(100vw - 48px));
  padding: 8px;
  border: 1px solid #dce8df;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 35px #17392b24;
}
.mobile-nav a {
  display: block;
  padding: 11px 12px;
}
@media (max-width: 1000px) {
  .primary-nav,
  .open-tool {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #18322e;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  background: #147e66;
  font-size: 23px;
}
.open-tool {
  font-size: 13px;
  font-weight: 700;
}
main {
  max-width: 760px;
  margin: 70px auto 100px;
  padding: 0 24px;
}
.eyebrow {
  color: #208568;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1 {
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.intro {
  margin: 0 0 32px;
  color: #526b5b;
  font-size: 19px;
  line-height: 1.5;
}
.content {
  border: 1px solid #e0e9e3;
  border-radius: 14px;
  background: #fff;
  padding: 12px 27px;
}
.content section {
  padding: 16px 0;
}
.content section + section {
  border-top: 1px solid #e9eee9;
}
h2 {
  margin: 0 0 9px;
  font-size: 19px;
}
.content p {
  margin: 0;
  color: #4f6658;
  line-height: 1.7;
}
.call-to-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 13px 18px;
  border-radius: 9px;
  background: #147e66;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.call-to-action:hover {
  background: #106b56;
}
footer {
  border-top: 1px solid #e0e9e3;
  color: #547061;
  font-size: 12px;
  font-weight: 700;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 520px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  main {
    margin-top: 45px;
  }
  .content {
    padding: 9px 19px;
  }
}

.content ul {
  margin: 10px 0;
  padding-left: 22px;
  color: #4f6658;
  line-height: 1.7;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
caption {
  text-align: left;
  font-weight: 700;
  margin: 10px 0;
}
th,
td {
  border-bottom: 1px solid #e9eee9;
  padding: 9px;
  vertical-align: top;
}
.content a,
.content li {
  overflow-wrap: anywhere;
}
