.stappenplan-wrapper {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.stappenplan-blok .titel  p{
	font-size: 24px;
	font-family: "Codec-pro-bold";
	margin-bottom: 10px;
}


/* Screenshot met vergrootglas */
.screenshot {
  position: relative;
  display: inline-block;
}

.screenshot .zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  pointer-events: none;
}

/* Lightbox overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox-overlay.active {
  display: flex;
}

/* Lightbox content = foto + close-btn */
.lightbox-content {
  position: relative;
  display: inline-block;
}
.lightbox-content img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}
.lightbox-content .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
}