/* Footer styles */

/* Footer main */
.site-footer__main {
  background: var(--brand-dark, #26526D);
  padding: 44px 0;
}

.site-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: start;
}

.site-footer__logo {
  max-width: 130px;
  height: auto;
}

.site-footer__nav {
  display: flex;
  gap: 119px;
}

.site-footer__nav .footer-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.site-footer__nav .footer-col a {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 16.8px; /* 93.333% */
  color: #F7F4EF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__nav .footer-col a:hover {
  color: var(--accent, #FFD400);
}

.site-footer__contact {
  text-align: left;
}

.site-footer__contact p {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: #F7F4EF;
  margin-bottom: 40px;
  line-height: 1.5;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__contact a:hover {
  color: var(--accent, #FFD400);
}

/* Copyright bar */
.site-footer__bottom {
  background: var(--brand-dark, #26526D);
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding: 20px 0;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copy {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: #F7F4EF;
  margin: 0;
}

.site-footer__legal {
  display: flex;
  gap: 40px;
}

.site-footer__legal a {
  font-family: var(--sans, "Poppins", sans-serif);
  font-size: 18px;
  font-weight: 400;
  color: #F7F4EF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--accent, #FFD400);
}

@media (max-width: 991px) {
  .site-footer__grid {
    flex-flow: column;
    gap: 30px;
    text-align: center;
    justify-items: center;
    align-items: anchor-center;
  }
  .site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column-reverse;
  gap: 20px;
}
  .site-footer__contact {
    text-align: center;
  }
.site-footer__copy {}
  .site-footer__nav {
    justify-content: center;
    gap: 10px;
    flex-flow: column;
  }

  .site-footer__nav .footer-col {
    align-items: center;
  }

  .site-footer__logo {
    margin: 0 auto;
  }

  .site-footer__main {padding-bottom: 0px;}
}

@media (max-width: 620px) {
  .site-footer__nav {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .site-footer__copy,
  .site-footer__legal a {
    font-size: 16px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}
