.footer {
  background: #F5F5F5;
}

.footer .inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 70px 20%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-privacy {
  display: flex;
  align-items: center;
  gap: 0 23px;
}

.footer-privacy li a {
  color: #888;
  font-size: 15px;
}

.footer-privacy img {
  width: 24px;
  height: 24px;
}

.footer-privacy li a:hover img {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 120px;
}

.footer-left, .footer-right {
  min-width: 260px;
}

.footer-left h3,
.footer-right h3 {
  font-size: 16px;
  color: #888;
  font-weight: 500;
  margin-bottom: 25px;
}

.footer-left ul,
.footer-right ul {
  font-size: 14px;
  color: #888;
}

.footer-left ul li,
.footer-right ul li {
  margin-bottom: 10px;
}

.footer-left ul li:last-child,
.footer-right ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .footer .inner {
    padding: 50px 5%;
  }
  
  .footer-bottom {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-bottom: 58px;
  }

  .footer .inner {
    padding: 40px 20px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer-privacy {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left, .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-left h3,
  .footer-right h3 {
    margin-bottom: 15px;
  }

  .footer-left ul li,
  .footer-right ul li {
    margin-bottom: 8px;
    font-size: 12px;
  }

}