<style>
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

body {
  margin: 0;
  background: #F9FFFA;
  font-family: 'Satoshi', sans-serif;
}

a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.impresspack-footer {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 0.75);
}

.footer-module {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.company-info {
  flex: 0 0 45%;
  max-width: 45%;
}

.footer-col {
  flex: 0 0 25%;
  max-width: 25%;
}

.footer-logo {
  max-width: 292px;
  margin-bottom: 1rem;
}

.company-description {
  max-width: 80%;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 2em;
  margin: 0;
}

.footer-heading {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #BB8309;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #BB8309 0%, #553C04 32%, #674B0C 49%, #D2A33C 76.75%, #B57F09 100%);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 1rem;
  display: flex;
  gap: 10px;
}

li a:hover {
  color: #b8860b;
  padding-left: 5px;
}

.social-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
  margin: 2rem 0 0 2rem;
}

.social-icon {
  width: 27px;
  height: 27px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 1.5em;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #BB8309 0%, #553C04 32%, #674B0C 49%, #D2A33C 76.75%, #B57F09 100%);
  border-image-slice: 1;
}

.footer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
  align-items: center;
  justify-content: flex-start;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #b8860b;
}

@media (max-width: 989.99px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo {
    max-width: 260px;
  }

  .company-info,
  .footer-col {
    max-width: 100%;
  }

  .company-description {
    padding-bottom: 0.5rem;
  }

  .footer-bottom {
    margin-top: 1rem;
  }

  .footer-inline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
  }

}
</style>