.section {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
  gap: 20px; /* Abstand zwischen den Items */
  margin: 20px 0;
}

.item {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.item i {
  margin-right: 10px; /* Abstand zwischen Icon und Text */
  color: black; /* optional: Icon-Farbe */
}

.sticky-sidebar {
  position: sticky;
  top: 20px; /* Abstand von oben beim Scrollen */
}

/* Optional: sicherstellen, dass der Row-Container overflow sichtbar hat */
.row {
  overflow: visible;
}

.item i {
    font-size: 20px;
    color: #aaaa9d;
}