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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f4f7f5;
}

a {
  color: #12614f;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #d9e2dd;
}

.topbar__inner,
.page {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
}

.topbar__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #18322b;
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.page {
  padding: 56px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #a14420;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #10251f;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #49645b;
  font-size: 18px;
  line-height: 1.65;
}

.notice {
  margin: 36px 0;
  padding: 18px 20px;
  border-left: 4px solid #d06b32;
  background: #fff7f1;
  color: #563323;
}

section {
  padding: 30px 0;
  border-top: 1px solid #d9e2dd;
}

h2 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.25;
}

p,
li {
  color: #334f46;
  font-size: 16px;
  line-height: 1.7;
}

ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.footer {
  padding: 24px 16px 36px;
  border-top: 1px solid #d9e2dd;
  color: #657a73;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 640px) {
  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .page {
    padding-top: 40px;
  }
}
