:root {
  color-scheme: light;
  --ink: #17344a;
  --muted: #526979;
  --paper: #fffdf5;
  --green: #16856f;
  --green-dark: #0d6656;
  --yellow: #f6c744;
  --coral: #ef765f;
  --line: #d7e2df;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #e9f8f1 0, var(--paper) 310px);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a {
  color: var(--green-dark);
}

.site-header,
.page-header,
main,
footer {
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 54px 0 34px;
}

.brand-mark {
  display: grid;
  flex: 0 0 76px;
  height: 76px;
  place-items: center;
  border: 5px solid white;
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 8px 0 #0d6656;
  font-size: 28px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 8vw, 48px);
}

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

.intro {
  padding: 26px 0 18px;
}

.intro p,
.page-header p {
  color: var(--muted);
}

.link-grid {
  display: grid;
  gap: 14px;
  padding: 20px 0 54px;
}

.info-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  text-decoration: none;
  box-shadow: 0 5px 0 #c8d6d2;
}

.info-link:hover,
.info-link:focus-visible {
  border-color: var(--green);
  transform: translateY(-2px);
}

.link-icon {
  display: grid;
  flex: 0 0 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 26px;
  font-weight: 900;
}

.info-link strong,
.info-link small {
  display: block;
}

.info-link strong {
  font-size: 20px;
}

.info-link small {
  color: var(--muted);
  font-size: 15px;
}

.page-header {
  padding: 44px 0 24px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 750;
}

.document {
  padding-bottom: 30px;
}

.document section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.document p,
.document ul {
  margin: 0;
}

.document ul {
  padding-left: 24px;
}

.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 16px;
  border-radius: 6px;
  color: white;
  background: var(--green);
  font-weight: 800;
  text-decoration: none;
}

footer {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

footer p {
  margin: 8px 0 0;
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    padding-top: 32px;
  }

  .brand-mark {
    flex-basis: 60px;
    height: 60px;
    font-size: 22px;
  }

  .info-link {
    padding: 16px;
  }
}
