/* Algemene instellingen */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 11pt;
  color: #000;
}

/* H1-kop (donkerblauw standaard, lichtblauw als alternatief via extra klasse) */
h1 {
  font-size: 20pt;
  color: #0A265F;
}

h1.alt {
  color: #009CDE;
}

/* H2-kop */
h2 {
  font-size: 16pt;
  color: #0A265F;
}

/* Doorlopende tekst (paragrafen) */
p {
  font-size: 11pt;
}

/* Introductie alinea */
.intro {
  font-size: 11pt;
  font-weight: bold;
}

/* Aanwijspijl */
.arrow {
  width: 20px;
  height: 20px;
  fill: #009CDE;
  stroke: #009CDE;
}

/* Uitlicht-vierkantje */
.highlight-box {
  background-color: #009CDE;
  padding: 10px;
  color: #fff;
  border-radius: 4px;
}

/* Afbeeldingen */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

