/* Algemene stijl */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #243588;
  color: white;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

header h1 a {
  color: white;
  text-decoration: none;
}

nav {
  flex: 2;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
  width: 150px; /* Set a fixed width for all <li> elements */
  text-align: center; /* Center the text inside the <li> elements */
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Container voor secties */
.container {
  display: flex;
  flex-wrap: wrap; /* Zorgt dat secties worden omgebroken */
  justify-content: space-between;
  gap: 20px; /* Afstand tussen de secties */
  margin: 20px auto;
  max-width: 1200px; /* Optionele maximale breedte */
}

/* Secties */
.container section {
  flex: 1 1 calc(50% - 20px); /* Secties nemen 50% van de breedte minus gap */
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* Responsiviteit: Zet secties onder elkaar bij echt smalle schermen */
@media (max-width: 80px) {
  .container section {
    flex: 1 1 100%; /* Volledige breedte op zeer smalle schermen */
  }
}

/* Knoppen */
button {
  background-color: #243588; /* Veranderd naar donkerblauw */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

button {
  color: white;
}

button a {
  color: white;
  text-decoration: none;
}

button:hover {
  background-color: #1e2e6e; /* Donkerdere tint van donkerblauw */
}

/* Footer styling */
#footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-section h4 {
  margin-bottom: 15px;
  color: #243588; /* Veranderd naar donkerblauw */
}

.footer-section p {
  margin: 0;
  line-height: 1.6;
}

.footer-section img {
  max-width: 250px;
  margin: 10px 0;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin: 5px 0;
}

.social-links a {
  color: #243588; /* Veranderd naar donkerblauw */
  text-decoration: none;
  transition: color 0.3s;
}

social-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 0.9em;
  background-color: #222;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #footer-container {
    flex-direction: column;
    align-items: center;
  }
  header {
    flex-direction: column;
    align-items: center;
  }
  header h1 {
    text-align: center;
    margin-bottom: 10px;
  }
  nav ul {
    justify-content: center;
  }
}