.footer {
 background: #1d1d1d url('../img/footer-bg.png') center top no-repeat;
  background-size: cover;
  color: #fff;
  padding: 30px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left, .footer-right {
  /*flex: 1 1 300px;*/
}

.logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-description {
  line-height: 1.6;
  font-size: 14px;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}

.footer-right h3 {
  margin-bottom: 10px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-right li {
  margin-bottom: 8px;
}

.footer-right li i {
  margin-right: 8px;
  color: #ffb300;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
}

.page-counter {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.page-counter img {
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left, .footer-right {
    width: 100%;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
