:root {
  --nav-height: 80px;
}

html, body {
  margin: 0;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; 
  scroll-behavior: smooth;
  /* scroll-snap-type: y mandatory; */
  scroll-padding-top: var(--nav-height);
  overflow-y: scroll;
}


section {
  max-height: auto;
  min-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

/*
h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

h3 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
*/

.section-text {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 80vw;
  margin: 0 auto;        /* sorgt für horizontale Zentrierung */
  text-align: center;
}


.section-title-h1 {
  font-size: 4rem;
  font-weight: 600;
  
}

.section-title-h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  
}

.section-title-h3 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 1rem;
}

/* Für mobile Geräte */
@media (max-width: 768px) {
  section {
    flex-direction: column;   /* Statt horizontaler Ausrichtung */
    padding-left: 10px;
    padding-left: 10px;
  }

  .datenschutz-wellcome-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .section-text {
    max-width: 95vw; /* fast volle Breite */
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Abstand zwischen Buttons */
    align-items: center;
  }
}

