.footer {
  padding: 4rem 2rem;
  background: var(--color-dark);
  color: white;
}

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

.footer-logo {
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--color-primary);
}

.footer-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.social-links {
  width: 7rem;
  height: 2rem;
}

.social-links a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}