.site-footer {
  background: #00723F;   /* your primary green */
  color: white;
  margin-top: 60px;
}

/* Top section */
.footer-top {
  padding: 40px 20px;
  text-align: center;
}

.footer-top h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Social icons row */
.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Social buttons */
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: #00723F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease;
}

/* Hover effect like your design */
.social-btn:hover {
  background: #D62828;   /* your accent red */
  color: white;
}

/* Bottom bar */
.footer-bottom {
  background: #005f32;  /* darker green */
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.footer-bottom .tagline {
  font-size: 13px;
  margin-top: 6px;
  opacity: .9;
}
