/* Algemene box styling */
.row > .col-md-6 .box {
  border-radius: 10px;
  padding: 28px;
  transition: all 0.2s ease;
  transform: translateY(-4px);
}

/* Linker box */
.row > .col-md-6:nth-child(1) .box {
  background-color: #f7f7f7;
}

/* Rechter box */
.row > .col-md-6:nth-child(2) .box {
  background-color: #DFE8FF;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Hover effect */
.row > .col-md-6 .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Typografie */
.box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  line-height: 1.7;
}

.box li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;
}

/* Basis icoon */
.box li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* dit centreert perfect */
  
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}

/* Linker box = kruisjes */
.row > .col-md-6:nth-child(1) .box li::before {
  content: "✕";
  background-color: #e0e0e0;
  color: #666666;
}

/* Rechter box = vinkjes */
.row > .col-md-6:nth-child(2) .box li::before {
  content: "✔";
  background-color: #1654F0;
  color: #ffffff;
}

/* Rechter titel iets sterker */
.row > .col-md-6:nth-child(2) h3 {
  font-weight: 700;
}

/* === Over Pulse - iconen uitlijnen ondanks verschillende bronformaten === */

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* vaste zone voor alle iconen */
.row > .col-md-4 > div:first-child {
  height: 90px;
  display: flex;
  align-items: center;
  margin-bottom: 12px !important;
}

/* iconen gelijk trekken */
.row > .col-md-4 img.image {
  max-height: 70px !important;
  width: auto !important;
  display: block;
}

/* vaste image-zone voor alle 6 */
.row > .col-md-4 > div:first-child {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px !important;
}

/* alle afbeeldingen binnen dezelfde zone */
.row > .col-md-4 img.image {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 80px !important;
  max-height: 80px !important;
  border-radius: 0 !important;
}

/* titels */
.row > .col-md-4 h2 {
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
  min-height: 50px;
}

/* tekst */
.row > .col-md-4 p {
  margin: 0 !important;
}