
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #ffffff, #f6f9fc);
  color: #000;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 40px 20px 20px;
}

.logo {
  max-width: 600px;
  height: auto;
}

.intro-text {
  margin: 20px auto;
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
  color: #444;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #333;
}

.whatsapp-hint {
  font-size: 0.95rem;
  margin-top: 10px;
}

.whatsapp-hint a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px auto;
  width: 60%; /* Etwas kürzer als vorher */
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 30px;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.feature-box h2 {
  color: #000;
  margin-bottom: 15px;
}

.feature-box ul {
  list-style: disc inside;
  text-align: left;
  padding-left: 0;
  margin-top: 15px;
}

.feature-box li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.contact {
  text-align: center;
  padding: 40px 20px;
}

footer {
  background: #eee;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  margin-top: auto;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    width: 90%;
  }

  .intro-text, .cta-button, .whatsapp-hint {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .legal-page {
    padding: 20px;
  }
}

.back-home {
  text-align: center;
  margin-bottom: 20px;
}

.back-home a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.back-home a:hover {
  text-decoration: underline;
}

/* Feature-box entrance animation */
.feature-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.feature-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back-to-top button styling */
#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 10000;
  transition: background 0.3s ease;
}
#backToTop:hover {
  background: #333;
}

/* Responsive logo */
.logo {
  width: 80%;
  max-width: 600px;
  height: auto;
}

/* Smooth scrolling for back-to-top and skip links */
html {
  scroll-behavior: smooth;
}
