:root {
  --primary-color: #006FFF;
  --secondary-color: #0CAFFF;
  --text-color: #111;
  --bg-light: #f9f9f9;
  --bg-white: #fff;
  --transition-speed: 0.3s;
}

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Hero-Bereich für Index */
.hero-box {
  background-image: url('../img/header2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  font-size: 25px;
  margin: -120px 20px 20px;
  border-radius: 20px;
  text-align: center;
  padding: 200px 60px;
  position: relative;
  z-index: 1;
}

.hero-box p.subline {
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero-box h1 {
  margin: 5px 0 20px;
  font-weight: 800;
}

/* Willkommen */
.willkommen {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 100px;
  gap: 40px;
}

.willkommen-left h2 {
  font-size: 45px;
  font-weight: bold;
  margin: 0;
}

.willkommen-right {
  max-width: 700px;
  line-height: 1.6;
}

.willkommen-right p {
  margin-top: 0;
  font-size: 16px;
}

/* Services-Box */
.services-box {
  background-color: #f5f5f5;
  border-radius: 20px;
  margin: 40px 20px;
  padding: 50px 0;
}

/* Mission Section */
.mission-section {
  background-color: #fff;
  padding: 60px 20px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 30px 30px 50px;
  font-size: 40px;
  font-weight: bold;
}

/* Partner Box */
.partner-box {
  background-color: #fff;
  margin: 40px 20px;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .willkommen {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .willkommen-left h2 {
    font-size: 36px;
  }
  
  .willkommen-right p {
    font-size: 14px;
  }
  
  .hero-box {
    margin: -95px 10px 30px;
    padding: 120px 20px;
  }
  
  .mission-section {
    padding: 40px 16px;
  }
}
