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

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

.site-header {
  background-color: #30633B;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

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

.site-header h1 {
  font-size: 2rem;
  margin: 0;
  flex-grow: 1;
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

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

.page-wrapper {
  display: flex;
}

.side-nav {
  width: 200px;
  background-color: #e6f4ea;
  padding: 1rem;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
}

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

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

.side-nav a {
  text-decoration: none;
  color: #30633B;
  font-weight: bold;
}

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

.content {
  flex-grow: 1;
  padding: 2rem;
  box-sizing: border-box;
}

a {
  color: #1a7f5a;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 1.5rem;
  line-height: 1.6;
}

h2, h3 {
  color: #30633B;
}
