/* Home tekst deel 1 */

/* Gelijk verdeelde kolommen */
.content-section__inner {
  display: flex;
  gap: 4rem; /* ruimte tussen links en rechts */
}

.content-section__text,
.content-section__cta {
  flex: 1; /* beide kolommen nemen 50% */
}
.content-section__cta .btn {
  margin-top: 1.5rem;
}

/* Checklist styling */
.content-section__cta ul.checklist {
  list-style: none !important; /* standaard bullets weghalen */
  padding: 0;
  margin: 1.5rem 0;
}

.content-section__cta ul.checklist li {
  list-style-type: none !important; /* extra zekerheid */
  position: relative;
  padding-left: 2rem; /* ruimte voor het icoontje */
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.content-section__cta ul.checklist li::before {
  content: "✔"; /* Unicode checkmark */
  position: absolute;
  left: 0;
  top: 0;
  color: #ed820e;
  background: none;
  font-weight: bold;
}








/* Home tekst deel 2 */

.home-content-section__text {
  max-width: 900px;
  margin: 0 auto;
}

.home-content-section__title {
  margin-bottom: 25px;
  font-size: 2em;
}

.general-home-content {
  margin-bottom: 30px;
  line-height: 1.6;
}

.sub-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ed820e;
  font-weight: bold;
}