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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.site-header {
  background-color: #2D5D36;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-left: 20px;
  flex-grow: 1;
}

.top-menu a {
  color: #ffffff;
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
}

.top-menu a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #e0f2e4;
  text-align: center;
  padding: 50px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  color: #2D5D36;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #4d4d4d;
}

.page-container {
  display: flex;
  min-height: calc(100vh - 80px);
}

.side-nav {
  width: 220px;
  background-color: #e6f0e6;
  padding: 20px;
}

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

.side-nav li {
  margin-bottom: 10px;
}

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

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

.main-content {
  flex-grow: 1;
  padding: 30px;
  background-color: #ffffff;
}

.main-content a {
  color: #2D5D36;
  text-decoration: underline;
  font-weight: 500;
}

.main-content a:hover {
  text-decoration: none;
}

.main-content ul {
  margin-left: 20px;
  list-style: disc;
}

.blog-teaser {
  margin-top: 40px;
  padding: 20px;
  background-color: #f0f7f3;
  border-left: 5px solid #2D5D36;
}

.blog-teaser h3 {
  font-size: 1.5rem;
  color: #2D5D36;
  margin-bottom: 15px;
}

.teaser h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.teaser h4 a {
  color: #2D5D36;
  text-decoration: none;
}

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

.teaser p {
  margin-bottom: 20px;
  color: #555;
}
