.tarieven-accordion {
  max-width: 100%;
  margin: 0 auto;
}

.tarief-item {
  border-bottom: 1px solid #ddd;
}

.tarief-toggle {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.tarief-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tarief-titel {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.tarief-prijs {
  font-size: 16px;
  color: #888;
}

.tarief-icon {
  font-size: 20px;
  color: #222;
  transition: transform 0.25s ease;
}

.tarief-content {
  display: none;
  padding: 0 0 20px 0;
  color: #555;
  line-height: 1.7;
}

.tarief-item.active .tarief-content {
  display: block;
}

.tarief-item.active .tarief-icon {
  transform: rotate(45deg);
}