/* Allgemeine Stile */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-image: url('Mitarbeiter.jpg');
    background-size: cover;
    background-position: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header */
  header {
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
  
  header .logo img {
    height: 50px;
  }
  
  nav {
    float: right;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline-block;
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: #29a329;
  }
  
  /* Hero */
  .hero {
    background-color: rgba(255,255,255,0.8);
    margin-top: 100px;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 48px;
    margin: 0;
  }
  
  .hero p {
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  .cta {
    display: inline-block;
    background-color: #29a329;
    color: #fff;
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
  }
  
  .cta:hover {
    background-color: #1e7e1e;
  }
  
  /* Unsere Leistungen */
  .services {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .services ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .services ul li {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .services ul li img {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  .services ul li h3 {
    font-size: 24px;
    margin: 0;
  }
  
  .services ul li p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  footer p {
    margin: 0;
    font-size: 14px
  }  