/* Bild als Hintergrund */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* Transparente Overlay-Fläche */
.overlay {
  background: rgba(0, 0, 0, 0.65); /* dunkelt ab für Lesbarkeit */
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container */
.container {
  max-width: 720px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

/* Headings */
h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

h2 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Text */
.intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #e8e8e8;
}

ul {
  list-style: none;
  padding-left: 1rem;
}

ul li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

/* Preise */
.pricing p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}

/* CTA Button */
.cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  background-color: #ffffff;
  color: #222;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #222;
  color: #fff;
}

