.informatie {
    position: relative;
}

/* Container waar de auto in zit */
.bedrijfsauto {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none; /* voorkomt klikproblemen */
    z-index: 0;
}

/* De afbeelding zelf */
.bedrijfsauto img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Schaalt mee met container */
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.uitleg {
	padding: 0 10px 0 10px;
    position: relative;
    z-index: 0;
}

/* Responsieve stijl voor afbeeldingen op kleinere schermen */
@media screen and (max-width: 768px) {
	.bedrijfsauto img {
			display: none;
		}
		
	.bedrijfsauto {
			width: 0px;
		}
}