.hf-footer {
  --hf-footer-bg-color: #f5f5f5;
  --hf-footer-text-color: #000;
  --hf-footer-link-color: #333333;
  --hf-footer-font-family: 'IBM Plex Mono', monospace;
  --hf-footer-heading-font: 'IBM Plex Mono', monospace;
  
  position: relative;
  background-color: var(--hf-footer-bg-color);
  background-size: cover;
  background-position: center;
  color: var(--hf-footer-text-color);
  padding: 150px 0 40px;
  font-family: var(--hf-footer-font-family);
  overflow: hidden;
}

.hf-footer__container {
  margin: 0 auto;
  padding: 0 8%;
}

.hf-footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 60px;
}

@media (max-width: 991px) {
  .hf-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.hf-footer__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 650px;
  width: 45%;
}

@media (max-width: 991px) {
  .hf-footer__info {
    align-items: center;
    width: 100%;
  }
}

.hf-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hf-footer__logo img {
    max-width: 300px;
  }
}

.hf-footer__description {
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--hf-footer-font-family); /* Design shows a monospaced-like font for description */
  opacity: 0.6;
}

.hf-footer__socials {
  display: flex;
  gap: 15px;
}

.hf-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hf-footer__social-link:hover {
  transform: translateY(-5px);
  opacity: 0.6;
}

.hf-footer__social-link img {
  width: 100%;
  height: 100%;
}
.hf-footer__columns{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.hf-footer__column-title {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--hf-footer-heading-font);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hf-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hf-footer__list-item a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.3s ease;
  font-family: var(--hf-footer-font-family);
}

.hf-footer__list-item a:hover {
  opacity: 0.6;
}

.hf-footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .hf-footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .hf-footer__container{
    padding: 0 7%;
  }

  .hf-footer{
    padding: 80px 0 40px;
  }
  .hf-footer__description{
    font-size: 15px;
  }
  .hf-footer__columns{
    flex-direction: column;
    gap: 40px;
  }

}

.hf-footer__copyright {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: var(--hf-footer-font-family);
}
