.custom-footer {
  background-color: #395B3C;
  color: #FFFFFF;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-left, .footer-center, .footer-right {
  flex: 1 1 300px;
  max-width: 300px;
}

.footer-left h2, .footer-center h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-left p, .footer-center p {
  font-size: 14px;
  line-height: 1.5;
}

.email-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-container img {
  width: 40px;
  height: 40px;
  transition: 0.3s ease-in-out;
}

.email-container img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  transform: scale(1.1);
}

.social-icons img {
  margin: 5px;
  width: 40px;
  height: 40px;
  transition: 0.3s ease-in-out;
}

.social-icons img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 10px;
  opacity: 0.8;
}

.footer-logo {
  max-width: 1000px;
  height: auto;
  transition: 0.3s ease-in-out;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  transform: scale(1.05);
}
