/* Footer */
.footer {
  background-color: #444; /* gray background */
  color: white;
  padding: 20px 0;
  width: 100vw;
  text-align: center;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6600; /* hover highlight */
}
