html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f2fff2;
}

.container {
  min-height: 100%;
  padding-bottom: 40px; /* Footer height */
  box-sizing: border-box;
}

.header {
  background-color: #004d00;
  color: white;
  text-align: center;
  padding: 25px 0;
}
.header p {
  color: yellow;
  font-size: 1.2rem;
}

.navbar {
  text-align: center;
  background-color: #ccffcc;
  padding: 15px 0;
}
.navbar a {
  margin: 0 15px;
  color: #004d00;
  text-decoration: none;
  font-weight: bold;
}
.navbar a.active {
  color: #007700;
  text-decoration: underline;
}

.divider {
  border: none;
  height: 4px;
  background-color: green;
  width: 80%;
  margin: 0 auto 20px;
}

.about-section,
.contact-section,
.welcome {
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 77, 0, 0.1);
  color: #333;
  line-height: 1.6;
  text-align: center;
}
.about-section h2,
.about-section h3,
.contact-section h2,
.welcome h2 {
  color: #004d00;
  margin-bottom: 15px;
}
.welcome p {
  font-size: 1.2em;
  color: #333;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.why-list {
  list-style-type: none;
  padding-left: 0;
}
.why-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.why-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: green;
}

.highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h3 {
  color: #004d00;
  padding: 10px;
}
.card p {
  padding: 0 15px 20px;
  color: #555;
}

.contact-form {
  text-align: left;
  margin-top: 20px;
}
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #004d00;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #004d00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background 0.3s;
}
.contact-form button:hover {
  background-color: #006600;
}

.contact-info {
  margin-top: 30px;
  text-align: left;
  color: #444;
}
.contact-info h3 {
  color: #004d00;
}

.social-media {
  margin-top: 20px;
}
.social-media a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: inline-block;
  margin-right: 15px;
}
.social-media i {
  margin-right: 8px;
  color: #555;
}

.footer {
  height: 40px;
  background-color: #f1f1f1;
  color: #004d00;
  text-align: center;
  line-height: 40px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  body {
    padding: 0 10px;
  }

  .header,
  .footer {
    padding: 15px 5px;
    text-align: center;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .header p {
    font-size: 1rem;
  }

  .navbar a {
    display: block;
    margin: 8px 0;
    font-size: 1rem;
    padding: 8px 0;
  }

  .divider {
    width: 90%;
  }

  .about-section,
  .contact-section,
  .welcome {
    padding: 20px;
    margin: 20px auto;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    font-size: 1rem;
  }

  .highlights .card {
    max-width: 100%;
    width: 100%;
  }

  .why-list li {
    font-size: 0.9rem;
    padding-left: 20px;
  }
}
