
.dsgvo h1, h2, p {
  margin: 0;
  padding: 0;
  border: 0;
}

.dsgvo h1 {
  font-size: 32px;
  line-height: 140%;
  margin-bottom: 45px;
}

.dsgvo h2 {
  font-size: 25px;
  line-height: 140%;
  margin-bottom: 10px;
}

.dsgvo p {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}

.dsgvo ol, ul {
  counter-reset: list;
  font-size: 18px;
  line-height: 140%;
}

.dsgvo ol > li, .dsgvo ul > li {
  list-style: none;
  position: relative;
  padding-left: 2em;
}

.dsgvo ol > li::before, .dsgvo ul > li::before {
  counter-increment: list;
  left: 0;
  padding-right: 10px;
  position: absolute;
  text-align: left;
  width: 2em;
}

.dsgvo ol.numbers > li::before {
  content: "(" counter(list, decimal) ") ";
  font-weight: bold;
}

.dsgvo ol.alpha > li::before {
  content: counter(list, lower-alpha) ") ";
  font-weight: bold;
}

.dsgvo ol.dash > li::before {
  content: "–";
}

.dsgvo ul.bullet > li::before {
  content: "•";
  font-size: 28px;
}

.dsgvo ol.decimal > li::before {
  content: counter(list, decimal) ". ";
  font-weight: bold;
}

.dsgvo a {
  color: #e40a15;
  text-decoration: none;
}