/* 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;
}