.ehak-banner {
 text-align: center;
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding-top: 0.2rem; /* optioneel, visueel testen */
}

.ehak-afbeelding {
  display: block;
  margin: 0 auto;
  width: 960px;         /* vaste breedte voor desktop */
  max-width: 100%;      /* responsive op kleinere schermen */
  height: clamp(200px, 30vh, 300px);
  object-fit: cover;      
}

.ehak-blok {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  font-size: 1.05rem;
  line-height: 1.7;
  color: #003366;
  position: relative;
  z-index: 2;
   text-align: left; /* ← expliciet toevoegen */
}

.ehak-blok h2,
.ehak-blok h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.ehak-blok h2 {
  text-align: left;
}

.ehak-intro {
  padding: 2rem 1rem;
  background-color: #fef9e7;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.ehak-intro h1 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.5rem;
}

.subtitel {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #003366;
  margin: 0;
}

.ehak-intro p:not(.subtitel) {
  text-align: left;
}

.CTA-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  text-align: center;
  max-width: 250px;
  width: auto;
  margin-left: auto;
  margin-right: 0;
}
.CTA-button:hover {
  background-color: var(--kleur-CTA);
}


@media screen and (max-width: 768px) {
  .ehak-blok {
    font-size: 1rem;
    line-height: 1.6;
    padding: 1.5rem 1rem 2rem 1rem;
  }

  .ehak-afbeelding {
    width: 100%;
  }
}

