:root {
  --color-bg: #FBF9EF;
  --color-primary: #333333;
  --color-secondary: #555555;
  --font-family: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-primary);
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

.navbar {
  background-color: #768350;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
}

/* Ensure logo sits left and nav sits to the right */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image sizing */
.navbar-logo {
  max-height: 50px;      /* adjust as needed */
  width: auto;
  display: block;
}

/* Optional: add spacing */
.navbar-logo-link {
  display: inline-flex;
  align-items: center;       /* vertically center image & text */
  text-decoration: none;
}

/* add a little breathing room & style for the text */
.logo-text {
  margin-left: 0.5rem;
  font-family: var(--font-family);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.nav-list li a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background-color: var(--color-bg);
  text-align: center;
  padding: 4rem 0;
  margin-top: 60px; /* to account for fixed navbar height */
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero p {
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1rem;
}

.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  margin-bottom: 0.5rem;
}

.faq {
  padding: 4rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.footer-contact, .footer {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.footer .logo {
  font-weight: bold;
  margin-bottom: 1rem;
}
