/* Contact Section */
#contact-section {
  background-color: #f8f9fa;
  color: #333333;
}

#contact-section .section-heading {
  color: #4f8d3b;
}

/* All icons in contact section */
#contact-section i {
  color: #75D156;
  transition: color 0.3s ease;
}

/* Links in contact info */
#contact-section .contact-info a {
  color: #333333;
  transition: color 0.3s ease;
}

#contact-section .contact-info a:hover {
  color: #75D156;
}

/* Social icons hover */
#contact-section .social-icons a:hover {
  color: #4d8b39;
}

/* Footer styling */
.footer {
  background-color: #0A3C2D;
  color: white;
}

.footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #75D156;
}

/* Universal button style for light green theme */
.btn-green {
  background-color: #75D156;
  color: white;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.btn:hover,
.btn-green:hover {
  background-color: #4d8b39;
  color: white;
}

/* Button sizing consistency */
a.btn,
button.btn {
  display: inline-block;
  width: auto;
}
