@charset "UTF-8";

/* === Base Styles === */
body, html {
  min-height: 100vh;
}

p {
  width: 60vw;   /* 60% der Viewport-Breite */
  max-width: 100%; /* Nicht breiter als Container */
  margin: 0 auto; /* Zentrierung */
}

/* === Privacy Headline === */
.privacy-headline {
  position: fixed;
  bottom: 10px;
  left: 120px;
  z-index: 10;
  pointer-events: none;
}

.privacy-headline h1 {
  transform-origin: left bottom;
  transition: transform 0.1s linear;
}

/* === Privacy Text Section === */
.privacy-text h3,
.privacy-text h4 {
  width: 60vw;
  margin: 0 auto 0.3rem auto;
  text-align: left;
  padding-top: 5%;
}

.privacy-text p {
  width: 60vw;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 60px;
}

/* === TABLET & MOBILE === */
@media (max-width: 1024px) {
  .privacy-headline {
    display: none;
  }

  .privacy-text {
    display: flex;
    flex-direction: column;
    padding: 0 5vw;
    gap: 1rem;
	margin-top: 80px;
  }

  .privacy-text h3,
  .privacy-text h4,
  .privacy-text p {
    width: 100%;
  }

  .privacy-text h3,
  .privacy-text h4 {
    margin-bottom: 10px; /* Reduzierter Abstand nach unten */
  }

  .privacy-text p {
    padding-top: 0; /* Kein zusätzlicher Abstand mehr nach oben */
  }
}