.footer {
  background: #111;
  border-top: 2px solid gold;
  padding: 30px 15px;
  text-align: center;
  color: #ddd;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin: 5px 0;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0;
  padding: 0;
}

.footer-links a {
  color: gold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #ff2e63;
}
