.bedrijven-container section {
  padding: 30px 0px;
  margin: 0 auto;
}

.bedrijven-container .block {
  display: flex;
  align-items: center;
  margin: 0 0 150px 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
    opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.bedrijven-container .block:nth-child(even) {
	flex-direction: row-reverse;
}

.bedrijven-container .block img {
  width: 50%;
  height: 300px;
  object-fit: cover;
}

.bedrijven-container .block .text {
  padding: 2rem;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.bedrijven-container .block:nth-child(2) .text,
.bedrijven-container .block:nth-child(4) .text {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
  opacity: 1;
  transform: translateY(0);
  }
}

/* Simpele parallax achtergrond */
  .parallax {
  height: 400px;
  background-image: url('https://picsum.photos/id/1031/1600/900');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}



/* DEMO 2 */
.content-block {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 12px;
      margin: 3rem 0;
      padding: 2rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateX(100px);
      transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .content-block.even {
      flex-direction: row-reverse;
      transform: translateX(-100px);
    }

    .content-block.in-view {
      opacity: 1;
      transform: translateX(0);
    }

    .content-block img {
      width: 300px;
      height: 200px;
      border-radius: 8px;
      object-fit: cover;
      margin: 0 2rem;
    }

    .content-text {
      max-width: 600px;
    }

    .content-text h2 {
      margin-top: 0;
    }

    /* Parallax blok */
    .parallax-block {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 4rem 0;
      height: 400px;
      overflow: hidden;
      position: relative;
    }

    .parallax-image {
      flex: 1;
      background-size: cover;
      background-position: center center;
      height: 400px;
      transform: translateY(0px);
      transition: transform 0.1s ease-out;
      border-radius: 12px;
    }