.footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4em;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-desktop {
  display: block;
  height: 80px;
  padding: 5px;
}

.logo-mobile {
  display: none;
  height: 60px;
  padding: 5px;
  margin-top: 10px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #f0c040;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 180px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .social-links {
    margin-top: 10px;
  }
}
