
/* Thin */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* ExtraLight */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* SemiBold */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

/* ExtraBold */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

/* Black */
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

 .datenschutz-section {
  max-width: 900px;        /* schön breite Lesefläche */
  margin: 100px  auto  0  auto;       /* Abstand nach außen, mittig */
  padding: 30px;
  background: #fff;        /* weißer Hintergrund */
  border-radius: 12px;     /* abgerundete Ecken */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* leichte Schatten */
  line-height: 1.7;        /* bessere Lesbarkeit */
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
}

/* Hauptüberschriften */
.datenschutz-section h1 {
  font-size: 2.7rem;
  margin-bottom: 25px;
  text-align: center;
  color: #1a237e; /* dunkles Blau */
}

/* Kapitelüberschriften */
.datenschutz-section h2 {
  font-size: 2.8rem;
  margin: 40px 0 15px;
  color: #0d47a1;
  border-bottom: 2px solid #0d47a1;
  padding-bottom: 5px;
}

/* Unterüberschriften */
.datenschutz-section h3 {
  font-size: 2.4rem;
  margin: 25px 0 10px;
  color: #1565c0;
}

.datenschutz-section h4,
.datenschutz-section h5 {
  font-size: 1.7rem;
  margin: 15px 0 8px;
  color: #1976d2;
}

/* Absätze */
.datenschutz-section p {
  margin: 10px 0;
  font-size: 1.5rem;
  text-align: justify; /* schöner Blocksatz */
}

/* Listen */
.datenschutz-section ul {
  margin: 15px 0 15px 25px;
  padding-left: 15px;
}

.datenschutz-section li {
  margin-bottom: 8px;
  font-size: 1.5rem;
  list-style: disc;
}

/* Links */
.datenschutz-section a {
  color: #0d47a1;
  text-decoration: none;
  font-weight: 500;
}

.datenschutz-section a:hover {
  text-decoration: underline;
}

/* Hervorhebung von Boxen (optional für Einwilligung, Widerruf etc.) */
.datenschutz-section .highlight {
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  padding: 12px 18px;
  margin: 20px 0;
  border-radius: 6px;
  font-size: 0.95rem;
}