	/* Instructies Block Styles */
	.instructies-wrapper {
	  background-color: #000000;
	  color: #ffffff;
	}

	.instructies-block {
	  padding: 60px 20px;
	  max-width: 1400px;
	  margin: 0 auto;
	}

	.instructies-hoofdtitel {
	  font-size: 40px;
	  font-weight: 700;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	  margin-bottom: 50px;
	  text-align: start;
	  color: #ffffff;
	  font-family: "OxideSolidPro", sans-serif;
	  margin-left: auto;
	  margin-right: auto;
	  padding: 7px;
	}

	.instructies-stappen {
	  display: flex;
	  justify-content: flex-start;
	  align-items: flex-start;
	  gap: 30px;
	  flex-wrap: nowrap;
	  max-width: 1400px;
	  margin: 0 auto;
	}

	.instructie-stap {
	  text-align: center;
	  flex-shrink: 0;
	}

	/* First two steps - wider */
	.instructie-stap:nth-child(1),
	.instructie-stap:nth-child(3),
	.instructie-stap:nth-child(5){
	  width: 380px;
	}

	.instructie-afbeelding {
	  border-radius: 12px;
	  margin-bottom: 24px;
	  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  overflow: hidden;
	  min-height: 220px;
	}

	.instructie-afbeelding img {
	  width: 100%;
	  height: auto;
	  object-fit: contain;
	  display: block;
	  max-height: 290px;
	}

	.instructie-titel {
	  font-size: 27px;
	  font-weight: 700;
	  font-family: "OxideSolidPro", sans-serif;
	  text-transform: uppercase;
	  letter-spacing: 0.8px;
	  color: #ffffff;
	  line-height: 1.2;
	  text-align: start;
	  padding: 20px;
	}

	.instructie-tekst {
	  text-align: start;
	  font-size: 18px;
	  line-height: 1.7;
	  margin: 0;
	  padding: 0 20px;
	  font-family: "Fira Code", monospace;
	}

	.instructie-pijl {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-shrink: 0;
	  width: 50px;
	  padding-top: 100px;
	  color: #4078f2;
	}

	.instructie-pijl svg {
	  width: 80px;
	  height: 80px;
	  opacity: 1;
	}

/* Responsive Design */
@media (max-width: 1300px) {
	.instructies-hoofdtitel {
		padding: 0 20px;
		width: 500px;
		text-align: start;
	}
	
  .instructies-stappen {
    flex-direction: column;
    align-items: center;
  }
  
  .instructie-stap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .instructie-stap:nth-child(1),
  .instructie-stap:nth-child(3),
  .instructie-stap:nth-child(5) {
    width: 100%;
    max-width: 500px;
  }
  
  .instructie-afbeelding img {
    width: 100%;
	max-height: 100%;
	object-fit: cover;
  }
  
  .instructie-titel,
  .instructie-tekst {
    width: 100%;
    text-align: start;
  }
  
  .instructie-pijl {
    transform: rotate(90deg);
    padding-top: 0;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .instructies-stappen {
    flex-direction: column;
    align-items: center;
  }
  
  .instructie-stap:nth-child(1),
  .instructie-stap:nth-child(3),
  .instructie-stap:nth-child(5) {
    width: 100%;
    max-width: 500px;
  }
}

@media (min-width: 641px) and (max-width: 964px) {
	.instructies-hoofdtitel {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 640px) {
  .instructies-block {
    padding: 40px 16px;
  }
  
  .instructies-hoofdtitel {
    font-size: 27px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
	padding: 0 20px;
    width: 500px;
	max-width: 100%;
  }
  
  .instructie-afbeelding {
    padding: 16px;
    min-height: 180px;
  }
}