/* Main container styling */
.main-datenschutz {
  display: flex;
  flex-direction: column;
  margin-left: 150px;
  margin-right: 150px;
  padding: 20px;
  max-width: 100vw;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Headline styling */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  margin-left: 75px;
}

h2 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #333;
}

h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #0071bc;
}

/* Section and div styling */
section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 10px;
  margin: 0;
}

section div {
  background-color: white;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section h5 {
  font-size: 1.25rem;
  color: #0071bc;
  margin-top: 20px;
}

section p, section ul {
  font-size: 1rem;
  line-height: 1.6;
  margin: 10px 0;
}

/* List styling */
section ul {
  list-style-type: disc;
  padding-left: 20px;
}

section p + p {
  margin-top: 15px;
}

/* Special styling for emphasized text */
section p strong {
  font-weight: bold;
  color: #555;
}

section ul li {
  margin-bottom: 10px;
}

/* Custom class for emphasized text */
.makeItBlue {
  color: #0071bc;
  font-weight: bold;
}

/* Responsive styling */
@media screen and (max-width: 768px) {
  .main-container {
      margin-left: 20px;
      margin-right: 20px;
  }

  h1 {
      font-size: 2rem;
  }

  h2 {
      font-size: 1.75rem;
  }

  h3 {
      font-size: 1.25rem;
  }

  section {
      padding: 15px;
  }

  section h5 {
      font-size: 1.1rem;
  }

  section p, section ul {
      font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  section h5 {
      font-size: 1rem;
  }

  section p, section ul {
      font-size: 0.85rem;
  }

  h1 {
      font-size: 1.8rem;
  }
}
