body {
  font-family: sans-serif;
  margin: 0;
  background: #eeeeea;
  color: #111;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background: #273454;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  margin-left: 1em;
  text-decoration: none;
  color: #333;
}

.intro-image {
  display: flex;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px; /* adjust as needed */
  width: auto;
  display: inline-block;
}


.logo-title h1 {
  font-size: 1.5rem; /* or smaller if needed */
  margin: 0;
}


.intro-container {
  position: relative;
  text-align: center;
  color: white;
}

.intro-container img {
  border-radius: 8px;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem; /* vergroot de tekst */
  font-weight: bold; /* maakt het dikgedrukt */
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* maakt het leesbaar op een foto */
  width: 80%;
}


.services {
  padding: 4em 2em;
  text-align: center;
}

.service-images {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 2em;
}

.service-images img {
  width: 30%;
  border-radius: 8px;
}

.about {
  padding: 4em 2em;
  display: flex;
  justify-content: center;
}

.about-content {
  display: flex;
  gap: 2em;
  max-width: 1000px;
  align-items: center;
}

.about-content img {
  width: 40%;
  border-radius: 8px;
}

.about-content .text {
  max-width: 50%;
}

.about-content button {
  background: #0a1c3b;
  color: white;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 1em;
}

.contact {
  padding: 4em 2em;
  text-align: center;
}

.excellence-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  z-index: 2;
  pointer-events: none;
}



form {
  display: grid;
  gap: 1em;
  max-width: 600px;
  margin: 2em auto;
}

input, textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 10px;
}

button[type="submit"] {
  background: #0a1c3b;
  color: white;
  padding: 0.8em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

footer {
  margin-top: 4em;
  display: flex;
  justify-content: space-around;
  font-size: 0.9em;
}
