.gazapo-footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 1.5rem 1rem !important;
  width: 100%;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}