:root {
  --brand-green: #4f5d30;
  --bg-beige: #fdfbf7;
  --sidebar-beige: #f4eee4;
  --text-dark: #333;
  --text-light: #666;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-beige);
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}


.hero-about {
  height: 50vh;
background: url('../assets/images/guides/aboutus.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-about .hero-content h1 {
  font-size: 45px;
}
.hero-about .hero-content p {
  font-size: 18px;
}



.page-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
}

/* Sidebar Styling */
.sidebar {
  width: 280px;
  padding: 40px 20px;
  background-color: var(--sidebar-beige);
  min-height: 100vh;
}

.side-nav {
  display: flex;
  margin-bottom: 30px;
}

.side-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: bold;
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 20px;
}

.side-nav a.active-tab {
  background-color: var(--brand-green);
  color: white;
}

.content-links {
  list-style: none;
  padding: 0;
}

.content-links li {
  margin-bottom: 12px;
  font-size: 14px;
}

.content-links a {
  text-decoration: none;
  color: var(--text-dark);
}

/* Main Content Styling */
.main-content {
  flex: 1;
  padding: 40px 20px;
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.intro-text {
  font-size: 18px;
  margin-bottom: 40px;
}

h2 {
  color: var(--brand-green);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

section {
  margin-bottom: 30px;
}

.feature {
  margin-bottom: 25px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .page-container {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    min-height: auto;
  }
}
