/* Reset some basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f8f9fb;
  color: #333;
  line-height: 1.6;
    background-color: #d3d883;
}

/* Header */
header {
   background: #489a4c;
  color: #fff;
  height: 60px;
  top: 0;
  z-index: 100;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
}

/* Section */
.section {
  padding: 50px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #2e7d32;
}

/* Form */
form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
}

/* Button */
.btn-submit {
  background: #2e7d32;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #1b5e20;
}

/* Contact info */
.contact-info {
  margin-top: 30px;
  background: #e8f5e9;
  padding: 20px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.contact-info p {
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background: #2e7d32;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 0.9rem;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 5px;
}
nav ul li a.active {
  color: #fff;
  border-bottom: 2px solid #2c6e49;
}
/* Mobile view */
@media (max-width: 768px) {
  nav ul {
    display: none; 
    flex-direction: column;
    text-align: center;
    background: #489a4c;  /* optional: menu background */
    position: absolute;
    top: 70px; /* adjust according to nav height */
    right: 0;
    width: 100%; /* adjust as needed */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
  }
}