* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Calibri, sans-serif;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #ffffff;
  color: #003366;
}

header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 2px solid #003366;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #003366;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  background-color: #E0F0FF;
  color: #003366;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #cce5ff;
}

main {
  flex: 1;
  padding: 2rem;
  background-color: #ffffff;
}

.pageText {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border: 1px solid #E0E0E0;
}

.pageText p {
  margin-top: 25px;
}

.infoCard {
  margin: 0 auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
}

.infoCard .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 1rem;
}

.infoCard .header h2 {
  font-size: 1.5rem;
  color: #003366;
  margin: 0;
}

.infoCard .header a {
  font-size: 1.5rem;
  color: #003366;
  margin: 0;
}

.infoCard-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.infoCard-body-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1rem;
}

.infoCard-body-buttons a {
  background-color: #E0F0FF;
  color: #003366;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.infoCard-body-buttons a:hover {
    background-color: #cce5ff;
}

.infoRow {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 0.5rem;
}

.infoCardHalf {
  width: calc(50% - 1rem);
}

/* Container voor twee naast elkaar */
.infoCardRow {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .infoCardHalf {
    width: 100%;
  }

  .infoCardRow {
    flex-direction: column;
    gap: 1rem;
  }
}

footer {
  background-color: #ffffff;
  color: #555;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #DDD;
}

/* Toon hamburger rechts in header */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #003366;
}

/* Mobiele overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 3rem 2rem;
}

/* Mobiel menu lijst */
.mobile-menu-overlay ul {
  list-style: none;
  text-align: right;
  width: 100%;
}

.mobile-menu-overlay li {
  margin: 1rem 0;
}

.mobile-menu-overlay a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #003366;
  background: none;
  padding: 0.5rem 1rem;
}

.mobile-menu-overlay.active {
  display: flex;
}

@media (max-width: 720px) {
  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  header {
    justify-content: space-between;
  }
}

.buttonBar {
  width: 100%;
  margin: 0 auto 1.5rem auto; /* ruimte onder de bar */
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border: 1px solid #E0E0E0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.buttonBar button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #D0D0D0;
  background: #f7f7f7;
  cursor: pointer;
}

.buttonBar button:hover {
  background: #eeeeee;
}