@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif !important;
  background-color: #f4f4f4;
  color: #333;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2E6436;
  padding: 1rem 2rem;
  color: white;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
  margin-right: 1rem;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  margin-right: auto;
}

.top-nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #ffffffcc;
  font-weight: 500;
}

.top-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.hero {
  background-color: #1f4b2e;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-button {
  background-color: #ffffff;
  color: #2E6436;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #d3f1de;
}

.layout {
  display: flex;
}

.side-nav {
  width: 200px;
  background-color: #e9f5ee;
  padding: 1rem;
  box-shadow: inset -1px 0 0 #ccc;
}

.side-nav ul {
  list-style: none;
  padding: 0;
}

.side-nav li {
  margin-bottom: 0.75rem;
}

.side-nav a {
  text-decoration: none;
  color: #2E6436;
  font-weight: 600;
}

.side-nav a:hover {
  text-decoration: underline;
}

.main-content {
  flex-grow: 1;
  padding: 2rem;
  background-color: white;
}

a {
  color: #2E6436;
  text-decoration: underline;
}

a:hover {
  color: #1c4022;
  text-decoration: none;
}

ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

.blog-teaser {
  background-color: #f0fff4;
  padding: 2rem;
  margin-top: 2rem;
  border-top: 3px solid #2E6436;
}

.blog-teaser h2 {
  margin-bottom: 1rem;
}

.teasers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teaser h3 {
  margin: 0 0 0.5rem;
}

.teaser a {
  color: #2E6436;
  font-weight: bold;
  text-decoration: none;
}

.teaser a:hover {
  text-decoration: underline;
}
