.mhc-site-footer {
  background: #002244;
  color: #fff;
  padding: 56px 24px 30px;
  font-family: Poppins, Arial, sans-serif;
}

.mhc-site-footer * { box-sizing: border-box; }
.mhc-site-footer__inner { max-width: 1180px; margin: 0 auto; }
.mhc-site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.mhc-site-footer__logo { display: flex; align-items: center; }
.mhc-site-footer__logo img {
  display: block;
  height: 46px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}
.mhc-site-footer__socials { display: flex; gap: 16px; }
.mhc-site-footer__socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.mhc-site-footer__socials a:hover,
.mhc-site-footer__socials a:focus-visible {
  background: #69BE28;
  transform: translateY(-3px);
}
.mhc-site-footer__socials svg { width: 20px; height: 20px; fill: currentColor; }
.mhc-site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  opacity: .8;
}
.mhc-site-footer__legal a,
.mhc-site-footer__legal span { color: #fff; text-decoration: none; }
.mhc-site-footer__legal a:hover,
.mhc-site-footer__legal a:focus-visible { color: #69BE28; }
.mhc-site-footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 13px;
  opacity: .65;
  margin: 20px 0 0;
}

@media (max-width: 480px) {
  .mhc-site-footer__top { flex-direction: column; text-align: center; }
}
