body {


  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #222;
  background: #f9fafb;


}

/* NavBar */
.navbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.nav-logo {
  font-weight: 700;
  color: #1e5cff;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #1e5cff;
}

@media (max-width: 600px) {
  .nav-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-links a {
    margin: 0 0.75rem;
  }
}

/* Footer */

.site-footer {
  background: #f4f6f8;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 1.5rem;
  margin-top: 4rem;
  color: #666;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-info h3 {
  margin-top: 0;
  color: #222;
  font-size: 1.1rem;
}

.footer-info p {
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-contact p {
  margin: 0.25rem 0;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-info p {
    margin: 0 auto;
  }
}

/* Home Page */

.hero {
  background: #f4f6f8;
  padding: 4rem 1.5rem;
  text-align: center;
}

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

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #1e5cff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* Officers Page */

.officers {
  max-width: 800px;
  margin: auto;
}

.officers h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.officer-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;

  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.officer-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.officer-card .role {
  margin: 0.1rem 0 0.5rem 0;
  font-weight: 600;
  color: #555;
}

.officer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.role {
  font-weight: 600;
  color: #555;
  margin-top: 0.25rem;

}

.email {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}



main {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1.5rem;
}



section {
  margin-bottom: 3rem;
}


