@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-500.ttf");
}
@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-800.ttf");
  font-weight: 800;
}
:root {
  font-family: Manrope, system-ui, sans-serif;
  color: #153f3b;
  background: #f8faf9;
  font-size: 16px;
  line-height: 1.6;
  --ink: #153f3b;
  --line: #c4d5cf;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
header,
main,
footer {
  max-width: 1200px;
  margin: auto;
  padding: 24px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.brand {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.8px;
}
.brand small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.header-link {
  font-size: 14px;
}
.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  padding: 70px 0;
}
.hero > * {
  min-width: 0;
}
h1,
h2,
.button {
  overflow-wrap: anywhere;
  hyphens: auto;
}
h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.07;
  letter-spacing: -2px;
  margin: 18px 0 24px;
  font-weight: 800;
}
h2 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -1px;
}
h3 {
  line-height: 1.3;
}
.intro {
  font-size: 19px;
  max-width: 640px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #153f3b;
  color: white;
  padding: 15px 23px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button:hover {
  background: #215950;
}
.button:disabled {
  opacity: 0.5;
  cursor: default;
}
.fine {
  font-size: 13px;
  color: #425e58;
}
.hero aside {
  background: #e4eee8;
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 20px;
  align-self: center;
}
.hero ol {
  padding-left: 24px;
}
.hero li {
  padding: 12px 0 12px 8px;
  border-bottom: 1px solid var(--line);
}
.tool {
  background: white;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 20px;
  scroll-margin-top: 20px;
}
.notice {
  border-left: 4px solid #34715e;
  padding: 10px 18px;
  background: #eff5f2;
  font-size: 14px;
}
iframe {
  width: 100%;
  border: 0;
  min-height: 240px;
  display: block;
}
.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}
.choice {
  padding: 20px;
  border: 1px solid #79978b;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.choice[aria-pressed="true"] {
  background: #153f3b;
  color: white;
}
.choice strong {
  display: block;
}
.result {
  padding: 25px;
  background: #e4eee8;
  border-radius: 12px;
  margin-top: 24px;
}
.advice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 70px 0;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: block;
  font-size: 14px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #789389;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: white;
  color: #153f3b;
}
input[type="checkbox"] {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.consent {
  margin: 20px 0;
}
.hp {
  position: absolute;
  left: -10000px;
}
.pending {
  background: #e4eee8;
  border-radius: 14px;
  padding: 25px;
}
.faq {
  max-width: 850px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  font-weight: 800;
  cursor: pointer;
}
.related {
  padding: 40px 0;
}
.related nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.related a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 14px;
}
.legal {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 14px;
  color: #425e58;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.skip {
  position: absolute;
  left: -10000px;
}
.skip:focus {
  left: 10px;
  top: 10px;
  background: white;
  padding: 12px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #167a9c;
  outline-offset: 4px;
}
.download {
  margin-top: 20px;
}
pre {
  white-space: pre-wrap;
  font: inherit;
  font-size: 14px;
}
section {
  scroll-margin-top: 20px;
}
@media (max-width: 760px) {
  header,
  main,
  footer {
    padding: 18px;
  }
  .brand {
    font-size: 18px;
  }
  .header-link {
    display: none;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 32px 0;
  }
  .hero aside {
    padding: 22px;
  }
  h1 {
    letter-spacing: -1.4px;
  }
  .tool {
    padding: 20px;
  }
  .choices {
    grid-template-columns: 1fr 1fr;
  }
  .advice {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px 0;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
  }
  footer {
    flex-direction: column;
  }
}

.footer-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  width: 100%;
  flex-basis: 100%;
  margin-bottom: 20px;
}
.footer-topics a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
footer {
  flex-wrap: wrap;
}
