* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f6f5f0;
  color: #182c27;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
header,
footer,
main {
  width: min(1120px, calc(100% - 48px));
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid #d6ddd5;
}
header > a:last-child {
  font-size: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 30px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -1px;
}
.logo span {
  display: grid;
  place-items: center;
  background: #c5ed90;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 31px;
}
.home {
  padding: 78px 0 60px;
}
.badge {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #416252;
}
h1 {
  font-size: clamp(42px, 6.8vw, 84px);
  letter-spacing: -0.055em;
  line-height: 1.07;
  font-weight: 600;
  margin: 24px 0;
}
h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.lead {
  font-size: 20px;
  max-width: 670px;
  color: #4a5e56;
  margin-bottom: 32px;
}
.button {
  display: inline-block;
  background: #183f32;
  color: white;
  border-radius: 8px;
  padding: 13px 21px;
  text-decoration: none;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 70px 0 48px;
  padding-top: 26px;
  border-top: 1px solid #cbd4ca;
}
.cards span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #537160;
}
h2 {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-top: 32px;
}
.cards h2 {
  margin-top: 15px;
}
.cards p {
  color: #52635c;
  font-size: 15px;
}
.notice {
  background: #e9eee3;
  border-radius: 12px;
  padding: 22px 28px;
  margin: 30px 0;
}
.notice h2 {
  margin-top: 0;
}
.notice p:last-child {
  margin-bottom: 0;
}
.document {
  max-width: 760px;
  padding: 58px 0 60px;
}
.document h1 {
  font-size: clamp(38px, 5vw, 57px);
}
.document p,
.document li {
  color: #3b5047;
}
.document li {
  margin-bottom: 12px;
}
.date {
  font-size: 13px;
  color: #637368 !important;
  margin-bottom: 34px;
}
footer {
  border-top: 1px solid #cbd4ca;
  padding: 25px 0 30px;
  font-size: 13px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.fine {
  color: #647269;
  font-size: 12px;
}
a:focus-visible {
  outline: 3px solid #3c7447;
  outline-offset: 5px;
}
@media (max-width: 680px) {
  header,
  footer,
  main {
    width: calc(100% - 36px);
  }
  .home {
    padding-top: 50px;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .lead {
    font-size: 18px;
  }
  .document {
    padding-top: 40px;
  }
  .notice {
    padding: 20px;
  }
}
