/* contact.css - Styling for Contact Page */

body {
  background-color: #f4fdf5; /* eco-friendly light green */
  color: #333;
  font-family: 'Inter', sans-serif;
}

.page-title {
  color: #1d6b3a;
  font-weight: 700;
  border-bottom: 3px solid #81c784; /* green underline */
  padding-bottom: 0.3rem;
}

.lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: #e9f7ec;
  border: 2px solid #81c784;
  border-radius: 8px;
  padding: 20px;
}

.contact-form .form-label {
  color: #1d6b3a;
  font-weight: 600;
}

.contact-form .form-control {
  border: 1px solid #81c784;
  border-radius: 6px;
}

.contact-form .form-control:focus {
  border-color: #1d6b3a;
  box-shadow: 0 0 5px rgba(29, 107, 58, 0.5);
}

.btn-eco {
  background-color: #1d6b3a;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-eco:hover {
  background-color: #0e4725;
}

footer {
  background-color: #1d6b3a !important;
}

footer a {
  color: #d4ecd4 !important;
}

footer a:hover {
  color: #fff !important;
}
