/* Shared Infoaim footer. Kept self-contained so modern and legacy pages render it identically. */
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #b8c0c7;
  background: #20262d;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}

.site-footer .container {
  width: min(1180px, calc(100% - 64px));
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 1fr);
  gap: 64px;
  padding: 65px 0 50px;
}

.site-footer .footer-brand {
  min-width: 0;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  width: 200px;
  min-width: 200px;
  height: auto;
  padding: 10px;
  margin: 0;
  background: #f7f8f8;
  border: 0;
  border-radius: 0;
}

.site-footer .footer-logo img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.site-footer .footer-brand p {
  max-width: 300px;
  padding: 0;
  margin: 22px 0 0;
  color: #b8c0c7;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer .footer-top h2 {
  padding: 0;
  margin: 4px 0 20px;
  color: #f7f8f8;
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
  text-transform: none;
}

.site-footer .footer-top ul {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer .footer-top li {
  display: list-item;
  width: auto;
  min-height: 0;
  padding: 0;
  margin: 0 0 9px;
  color: #b8c0c7;
  background: transparent;
  border: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.7;
}

.site-footer .footer-top a:hover,
.site-footer .footer-top a:focus-visible {
  color: #fd9c0c;
}

.site-footer .footer-contact li:first-child a {
  color: #fd9c0c;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0;
  margin: 0 auto;
  color: #87939d;
  border-top: 1px solid rgba(255,255,255,.11);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer .footer-bottom span,
.site-footer .footer-bottom a {
  padding: 0;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.site-footer .footer-bottom a:hover,
.site-footer .footer-bottom a:focus-visible {
  color: #fd9c0c;
}

.site-footer .footer-bottom i {
  margin-left: 5px;
}

@media (max-width: 900px) {
  .site-footer .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .site-footer .container {
    width: min(1180px, calc(100% - 36px));
  }

  .site-footer .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 48px 0 38px;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .site-footer .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
