body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafc;
  color: #222;
}
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2e7d32;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
}
nav li {
  position: relative;
  z-index: 10;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
  display: block;
  padding: 0.5rem 0.8rem;
  position: relative;
  z-index: 10;
  cursor: pointer !important;
  pointer-events: auto !important;
}
nav a:hover {
  color: #2e7d32;
}
/* Spezifische Regel für problematische Links */
nav ul li a {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 999;
  display: block !important;
}
nav ul li a[href*="rechtliche-hinweise"],
nav ul li a[href*="kontakt"] {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  position: relative !important;
}
.hero {
  background: linear-gradient(90deg, #e8f5e9 0%, #fffde7 100%);
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.cta {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(46,125,50,0.08);
  transition: background 0.2s;
}
.cta:hover {
  background: #388e3c;
}
.features {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.features h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 2rem;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(46,125,50,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
}
.feature h3 {
  color: #388e3c;
  margin-bottom: 0.5rem;
}
.download {
  background: #fffde7;
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
}
.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.download-buttons a {
  transition: transform 0.2s;
}
.download-buttons a:hover {
  transform: translateY(-2px);
}
.ios-button {
  background: #333;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}
.btn {
  background: #2e7d32;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
  opacity: 1;
  pointer-events: auto;
}
.btn.disabled {
  background: #bdbdbd;
  pointer-events: none;
  opacity: 0.7;
}
.screenshots {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}
.screenshot-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto 0;
}
.screenshot-gallery img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-gallery img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}
footer {
  background: #fff;
  color: #888;
  text-align: center;
  padding: 1.2rem 0 1rem 0;
  font-size: 0.95rem;
  margin-top: 2rem;
  border-top: 1px solid #eee;
}
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 2rem auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d32;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-btn {
  background: #2e7d32;
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.submit-btn:hover {
  background: #1b5e20;
}
.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 900px) {
  .feature-list {
    flex-direction: column;
    align-items: center;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1000;
  }
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  nav a {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .feature {
    padding: 1.2rem 0.7rem;
    min-width: 0;
    max-width: 100%;
  }
  .screenshot-gallery img {
    max-width: 250px;
  }
  nav {
    padding: 1rem 0.5rem;
    position: relative;
    z-index: 1000;
  }
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  nav a {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    min-width: auto;
  }
  .features, .screenshots {
    padding: 0 0.5rem;
  }
} 