.site-footer {
  background-color: #f4f6f8;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  color: #7ab541;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a, .footer-column p {
  color: #33598a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.social-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.social-badges img {
  max-width: 150px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #dce1e6;
  font-size: 12px;
  color: #666;
}