/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.site-header {
  background-color: #ffffff;
  padding: 24px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #244A34;
  font-weight: 700;
  font-size: 18px;
  transition: color 250ms ease;
}
.site-header__brand:hover {
  color: #4a7c42;
}
.site-header__brand img {
  display: block;
  height: auto;
  max-height: 40px;
  width: auto;
}

.site-header__title {
  color: inherit;
}

.site-header__nav {
  flex-shrink: 0;
}

.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  color: #98B95F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 250ms ease;
}
.site-header__menu a:hover {
  color: #244A34;
}

@media (max-width: 767px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header__menu {
    justify-content: flex-start;
  }
}
.site-footer {
  background-color: #2e4a3f;
  color: #fff;
  padding: 120px 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
}

.site-footer__brand {
  max-width: 520px;
}

.site-footer__logo {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 16px;
}
.site-footer__logo img {
  display: block;
  height: auto;
  max-height: 40px;
  width: auto;
}

.site-footer__title {
  color: inherit;
}

.site-footer__description {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 56px;
  color: #fff;
  letter-spacing: -0.449px;
}

.site-footer__legal {
  font-size: 16px;
  color: #fff;
}

.site-footer__copyright {
  margin-right: 8px;
}

.site-footer__legal-links::before {
  content: " | ";
  margin-left: 4px;
  color: #98B95F;
}
.site-footer__legal-links a + a::before {
  content: " | ";
  margin: 0 8px;
  color: #98B95F;
}
.site-footer__legal-links a {
  color: #98B95F;
  text-decoration: none;
  transition: color 250ms ease;
}
.site-footer__legal-links a:hover {
  color: #a5d66a;
}

.site-footer__nav {
  display: flex;
  gap: 48px;
}

.site-footer__column {
  min-width: 120px;
}

.site-footer__heading {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu a {
  display: block;
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: color 250ms ease;
}
.site-footer__menu a:hover {
  color: #ffffff;
}

.site-footer__cta {
  text-align: right;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background-color: #98B95F;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 250ms ease, color 250ms ease;
}
.site-footer__btn:hover {
  background-color: #a5d66a;
  color: #ffffff;
}
.site-footer__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .site-footer__description {
    font-size: 14px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .site-footer__brand {
    max-width: none;
  }
  .site-footer__nav {
    flex-wrap: wrap;
  }
  .site-footer__cta {
    text-align: left;
  }
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1023px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container.centered {
  text-align: center;
}