.footer {
  background-color: #4a4748; /* Dark grey background */
  padding: 3px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-links li a:hover {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 768px) {
  .footer{  padding: 20px;}
  .footer-container {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .footer-links {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links li{padding: 0px 18px;}
  .footer-links li a{font-size: 12px;}
}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
.footer-links li a{font-size: 12px;}
}