
* {
  box-sizing: border-box;
}

html {
  background: #f7f8f5;
  color: #162117;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body {
  margin: 0;
}

a {
  color: #195b2c;
}

img {
  max-width: 100%;
}

.site-header,
.site-footer {
  background: #eaf1e7;
  border-bottom: 1px solid #d5dfd2;
}

.site-footer {
  border-bottom: 0;
  border-top: 1px solid #d5dfd2;
}

.wrap {
  margin: 0 auto;
  max-width: 1080px;
  padding: 20px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  background: #195b2c;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 36px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.hero {
  background: #fff;
  border-bottom: 1px solid #dfe6dc;
}

.hero-inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 1fr;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.card,
.notice,
.price-box {
  background: #fff;
  border: 1px solid #dfe6dc;
  border-radius: 14px;
  padding: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  background: #195b2c;
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: #eaf1e7;
  color: #195b2c;
}

.muted {
  color: #526155;
}

.section {
  padding: 32px 0;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  border: 1px solid #dfe6dc;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.table th {
  background: #f0f5ee;
  width: 32%;
}

.skip-link {
  left: -999px;
  position: absolute;
  top: 0;
}

.skip-link:focus {
  background: #fff;
  left: 10px;
  padding: 8px;
  z-index: 10;
}

@media (max-width: 760px) {
  .hero-inner,
  .card-grid {
    grid-template-columns: 1fr;
  }
}
