/* Reset and layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

main {
  padding: 120px 20px 60px;
  min-height: 80vh;
}

/* Header styling */
header {
  background: linear-gradient(to right, #1b5e20, #f7931e); /* green to orange */
  padding: 15px 30px;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

header img {
  height: 60px;
}


.nav a,
.dropbtn,
.dropdown-content a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-weight: bold;
}

/* On hover - no underline */
.nav a:hover,
.dropbtn:hover,
.dropdown-content a:hover {
  text-decoration: none;
  color: #f7931e; /* Optional: orange hover color */
}

/* Footer styling */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px; 
}

.nav a, .dropbtn {
  background: none;
  border: none;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Contact Us Button Styling */
.btn-contact {
  background-color: #f7931e;
  padding: 8px 16px;
  border-radius: 4px;
  color: white !important;
  text-decoration: none;
  font-weight: bold;
  margin-left: 20px; /* This moves it inward */
}

.btn-contact:hover {
  background-color: #e67e00;
}

section h1, section h2 {
  color: #1b5e20;
  margin-bottom: 10px;
}

section ul {
  margin-top: 10px;
  padding-left: 20px;
}

section ul li {
  margin-bottom: 8px;
}
