.site-footer {
  background: #fff;
  padding: 60px 40px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* LEFT */
.footer-left {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-address {
  color: #000;
  font-size: 14px;
}

/* SOCIAL */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  height: 36px;
  width: 36px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-icon.small {
  height: 30px;
  width: 30px;
}

.social-icon:hover {
  filter: none;
  transform: scale(1.05);
}

/* BADGES */
.footer-badges img {
  max-height: 70px;
  margin-right: 10px;
  margin-top: 10px;
}

/* RIGHT */
.footer-right {
  max-width: 500px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.footer-email a {
  color: #99c455;
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #99c455;
  text-decoration: underline;
}