/* ==============================================================
AANBOD / SERVICE BLOKKEN
============================================================== */

.service-block{
  margin:100px 0;
}

.service-inner{
  max-width:1200px;
  margin:0 auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;

  align-items:center;
}

/* 🔥 flip layout */

.service-block.reverse .service-inner{
  direction:rtl;
}

.service-block.reverse .service-content{
  direction:ltr;
}

/* image */

.service-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:12px;
}

/* content */

.service-content{
  max-width:520px;
}

.service-content h2{
  font-size:2.2rem;
  margin-bottom:10px;
}

.service-content h3{
  font-size:1.2rem;
  margin-bottom:20px;
  color:#5a6b70;
}

.service-content p{
  line-height:1.8;
  color:#3d4a4f;
}

.service-content p + p{
  margin-top:14px;
}

/* CTA */

.cta-button{
  display:inline-block;
  margin-top:25px;

  padding:12px 22px;
  background:#6c8f87;
  color:#fff;

  border-radius:6px;
  font-weight:600;
  text-decoration:none;

  transition:.25s ease;
}

.cta-button:hover{
  background:#5a7a73;
  transform:translateY(-2px);
}

/* spacing tussen blokken */

.service-block + .service-block{
  margin-top:120px;
}

/* responsive */

@media(max-width:900px){

  .service-inner{
    grid-template-columns:1fr;
  }

  .service-image img{
    height:300px;
  }

  .service-content{
    max-width:100%;
  }

}