.privacy-policy-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  padding-bottom: 40px;
}

.privacy-policy-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px auto;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
}
.privacy-policy-content ul {
  list-style: none;
  padding-left: 0; /* optioneel: geen ruimte voor bullet */
  margin: 1rem 0;
  text-align: left;
}

.privacy-policy-content p {
  margin-bottom: 18px;
  margin-top: 0;
}

.privacy-policy-content li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.9em;
  line-height: 1.7;
}

.privacy-policy-content li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #ffff00;
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

/* Tablet (700px en kleiner) */
@media (max-width: 700px) {
  .privacy-policy-content {
    max-width: 94vw;
    font-size: 1.05rem;   /* Iets groter voor betere leesbaarheid */
    padding: 0 8px;
  }
}

/* Mobiel (500px en kleiner) */
@media (max-width: 500px) {
  .privacy-policy-content {
    font-size: 1rem;
    max-width: 100vw;
    width: 100vw;
    padding: 0 10px;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
  }
  .privacy-policy-content ul {
    list-style: none;
    padding: 0;
    margin: 1.2em 0;
    text-align: left; /* Lijsten altijd links uitlijnen voor leesbaarheid */
  }
  .privacy-policy-content li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.9em;
    font-size: 1.07em;
    line-height: 1.7;
  }
  .privacy-policy-content li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #ffff00;
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
  }
}

