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

body {
  margin: 0;
  font-family: 'Inter', sans-serif !important;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  min-height: 100vh;
}

header {
  background-color: #308340;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

header img {
  height: 50px;
  margin-right: 20px;
}

header h1 {
  font-size: 1.8rem;
  margin: 0;
  font-family: 'Inter', sans-serif !important;
}

nav.top-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #2a6c34;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  z-index: 900;
}

nav.top-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

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

aside.side-nav {
  width: 200px;
  background-color: #e1f0e5;
  padding: 20px;
  margin-top: 130px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

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

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

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

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

main.content {
  margin-left: 220px;
  margin-top: 140px;
  padding: 20px;
  max-width: 900px;
}

/* Hero section */
.hero {
  background-color: #daf3e2;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

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

.hero p {
  font-size: 1.1rem;
  color: #2a2a2a;
}

.hero a.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #308340;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.hero a.button:hover {
  background-color: #256b2d;
}

/* Blog teaser section */
.blog-teaser {
  background-color: #eef8f0;
  padding: 30px;
  border-left: 6px solid #308340;
  border-radius: 6px;
  margin-top: 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.blog-teaser h3 {
  margin-top: 0;
  color: #21552a;
}

.blog-teaser p {
  margin-bottom: 0;
  font-size: 1rem;
}

main.content a {
  color: #1a5d2b;
  text-decoration: underline;
}

main.content a:hover {
  color: #0f3d1a;
}

main.content ul,
main.content ol {
  padding-left: 20px;
  margin-bottom: 1em;
}

main.content li {
  margin-bottom: 0.5em;
}
