.main-footer {
  background-color: #004080;
  color: white;
  padding: 2rem 1rem 1rem;
  font-size: 0.95rem;
  //margin-top: 4rem;
  margin-top: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 250px;
  margin: 1rem;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1rem;
  color: #cce6ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #cce6ff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #cce6ff;
}

.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:hover
 {
  color: #ffffff;   /* maakt de link wit */
  text-decoration: none; /* optioneel: haalt streepje weg */
}

/* ✅ Mobiele weergave: alles onder elkaar */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-column {
    flex: 1 1 100%;
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
  }
}
