:root {
  --sidebar-bg: #e8ded1;
  --text-color: #4a4a4a;
  --heading-color: #5d6d3e;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.page-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sidebar Styles */
.sidebar {
  width: 250px;
  background-color: var(--sidebar-bg);
  padding: 40px 20px;
  min-height: 100vh;
}

.nav-list {
  list-style: none;
  padding: 0;
}

.nav-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

/* The bullet points */
.nav-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
}

.nav-list a {
  text-decoration: none;
  color: inherit;
  font-size: 0.9rem;
}

/* Main Content Styles */
.content {
  flex: 1;
  padding: 40px 60px;
}

.breadcrumb {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 20px;
}

.title {
  color: var(--heading-color);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.text-block p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-link {
  color: inherit;
  font-weight: bold;
  text-decoration: underline;
}

.hero-image img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 4px;
}
