.footer {
  width: 100%;
  box-sizing: border-box;
  background-color: #003366;
  color: white;
  padding: 1.2rem 1rem;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 100%;
}

.footer-links a {
  color: #cce6ff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

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

.footer-text {
  font-size: 0.85rem;
  color: #cccccc;
  text-align: center;
}