.a8-footer {
  background-color: #2d2d2d;
  color: #f8f9fa;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

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

.footer-copyright {
  margin-bottom: 0.5rem;
}

.footer-copyright p {
  margin: 0;
  color: #adb5bd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #4dabf7;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
