body {
  font-family: Georgia, serif;
  line-height: 1.6;
  margin: 0;
  color: #2a3328;
}
.header {
  background: linear-gradient(to right, #2d5a3d, #9cb88a);
  color: #f5faf6;
  padding: 16px 20px;
  text-align: center;
}
.site-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: -0.02em;
}
.site-title a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.container h1 {
  color: #2d5a3d;
  border-bottom: 2px solid #b8d4b0;
  padding-bottom: 8px;
  font-size: 2em;
  margin: 0 0 0.75em;
}
h2 {
  color: #2d5a3d;
  border-bottom: 2px solid #b8d4b0;
  padding-bottom: 8px;
}
h3 {
  color: #3d6b4a;
}
footer {
  background: #f2f7f0;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #555;
}
footer a {
  color: #2d5a3d;
}
.top-nav {
  background: #eef5eb;
  padding: 6px 16px;
  font-size: 0.9em;
  border-bottom: 1px solid #c5dbbc;
}
.top-nav table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
.top-nav td {
  border: none;
  padding: 6px 0 6px 16px;
  vertical-align: middle;
}
.top-nav td.menu-spacer {
  width: 100%;
}
.top-nav td.top-nav__burger-cell {
  display: table-cell;
  width: 1%;
  padding: 8px 12px 8px 16px;
}
.top-nav .top-nav__link a {
  color: #2d5a3d;
  text-decoration: none;
  font-weight: bold;
}
.top-nav .top-nav__link a:hover {
  text-decoration: underline;
}
.menu-toggle {
  display: none;
}
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background-color: #2d5a3d;
  border-radius: 2px;
}
.menu {
  display: none;
  background-color: #f5faf3;
  padding: 10px 15px;
  text-align: left;
}
.menu a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #2a3328;
}
.menu-toggle:checked ~ .menu {
  display: block;
}
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.cta-card {
  border: 1px solid #c5dbbc;
  border-radius: 8px;
  padding: 1.25rem;
  background: #fafcf9;
}
.cta-card h3 {
  margin-top: 0;
}
.cta-card a {
  color: #2d5a3d;
  font-weight: bold;
}
.product-list article {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0ebe0;
}
.theme-card {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid #c5dbbc;
  border-radius: 8px;
  background: #fafcf9;
}
.theme-card h3 {
  margin-top: 0;
}
.agenda-list {
  list-style: none;
  padding: 0;
}
.agenda-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e8efe6;
}
@media (max-width: 991px) {
  .top-nav td.top-nav__link {
    display: none;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    opacity: 0;
    width: 30px;
    height: 22px;
    margin: 0;
    cursor: pointer;
  }
  .site-nav-shell {
    position: relative;
  }
}
