.footer {
  background-color: #43B929;
  color: white; 
  position: relative;
  padding: 60px 20px 40px;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Logo and brand info */
.footer-brand {
  width: 28%;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.logo-img {
  max-width: 50px;
  height: auto;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.legal {
  font-size: 12px;
}

.legal p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.legal a {
  color: white;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

/* Footer links section */
.footer-links {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.services-column,
.contact-column,
.connect-column {
  flex: 1;
  max-width: 220px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #1a1818;
  padding-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 12px;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Contact column specific styles */
.contact-column ul li {
  white-space: nowrap;
}

.contact-column .contact-label {
  display: inline-block;
}

.contact-column .contact-label a {
  font-weight: 500;
}

/* Social & Newsletter */
.social {
  margin-bottom: 30px;
}

.social i {
  margin-right: 8px;
  width: 20px;
}

.newsletter {
  max-width: 100%;
}

.newsletter input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 25px;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}

.newsletter input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter input:focus {
  background-color: white;
}

/* Wave background design */
.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-size: cover;
  z-index: 1;
  opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-brand {
    width: 30%;
  }
  
  .footer-links {
    width: 68%;
  }
  
  .services-column,
  .contact-column,
  .connect-column {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-links {
    width: 100%;
  }
  
  .footer-brand {
    margin-bottom: 40px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .services-column,
  .contact-column {
    width: 48%;
  }
  
  .connect-column {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .services-column,
  .contact-column,
  .connect-column {
    width: 100%;
    max-width: 100%;
  }
}