body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #14532d;
  color: white;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

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

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

.contact-section {
  text-align: center;
  padding: 80px 20px;
  background: white;
}

.contact-section h1 {
  font-size: 2.2rem;
  color: #14532d;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-item {
  background-color: #e8f5e9;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 2rem;
  color: #14532d;
  margin-bottom: 10px;
}

.contact-item h3 {
  color: #14532d;
  margin-bottom: 5px;
}

.contact-item a {
  color: #1b5e20;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

footer {
  background-color: #14532d;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
