/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Navbar */
header {
  background-color: #2f6d3b;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
}

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

.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  display: none;
}

/* Sections */
h2 {
  color: #2f6d3b;
  margin-bottom: 10px;
}

.highlight {
  color: #4f9d61;
  font-weight: bold;
}

section {
  margin-bottom: 40px;
}

.mission, .vision {
  background-color: #e8f1e8;
  padding: 20px;
  border-radius: 8px;
}

.why-choose ul {
  list-style: disc inside;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.team-member {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  max-width: 150px;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  background-color: #f1f1f1;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #2f6d3b;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 15px;
    z-index: 100;
  }

  nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
