.site-footer {
  background-color: #0F8352;
  color: #ffffff;
  padding: 150px 20px 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: -300px !important;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #dfdfdf;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social span {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.social-icons img {
  width: 32px;
  height: 32px;

}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  margin-top: 10px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 15px;
  }

  .footer-section ul li a {
    font-size: 13px;
  }
}

