/* Hero Section - Für alle Seiten verwendbar */

.hero-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  margin-top: 5px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Farbige Leiste oben */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #17395B 0 25%, #6B7280 25% 50%, #F6B73C 50% 75%, #A3C76D 75% 100%);
}

/* Überschrift mit hellblauer Trennlinie */
.hero-title {
  font-size: 2.5rem;
  margin: 0 0 10px;
  font-weight: 800;
  border-bottom: 3px solid rgba(26, 115, 232, 0.15);
  padding-bottom: 0.4rem;
  color: #495057;
}

/* Beschreibungstext */
.hero-description {
  font-size: 1rem;
  color: #6c757d;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}
