   body {
      font-family: Arial, sans-serif;
      margin: 0; padding: 0;
      
      color: #222;
    }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #60a5fa;
  color: #003366;
  padding: 30px 0 20px 0;
  text-align: center;
  z-index: 1000;
}

main {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 30px 24px;
  padding-top: 160px; /* Platz für Header + Nav, ggf. anpassen */
}
    header h1 {
      margin: 0 0 10px 0;
      font-size: 2.2em;
      letter-spacing: 1px;
    }
    header p {
      margin: 0;
      font-size: 1.2em;
    }
   
    nav {
  position: fixed;
  top: 110px; /* Höhe des Headers anpassen! */
  left: 0;
  width: 100%;
  background: #003366;
  text-align: center;
  padding: 10px 0;
  z-index: 1999;
}

    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 18px;
      font-weight: bold;
      font-size: 1.1em;
      transition: color 0.2s;
    }
    nav a:hover {
      color: #ffd700;
    }
    
    section {
      margin-bottom: 32px;
    }
    h2 {
      color: #0d74db;
      margin-top: 0;
    }
    .leistungen {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: space-between;
    }
    .leistung {
      flex: 1 1 260px;
      background: #f8fafc;
      border-radius: 8px;
      padding: 18px 16px;
      box-shadow: 0 2px 8px rgba(13,116,219,0.07);
      min-width: 240px;
    }
    .leistung h3 {
      margin-top: 0;
      color: #003366;
    }
    .facts {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 20px;
    }
    .fact {
      flex: 1 1 200px;
      background: #e3f0ff;
      border-radius: 8px;
      padding: 14px 12px;
      color: #003366;
      min-width: 180px;
      font-size: 1em;
    }
    .kontakt {
      background: #f8fafc;
      border-radius: 8px;
      padding: 18px 16px;
      margin-top: 20px;
      box-shadow: 0 2px 8px rgba(13,116,219,0.07);
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
    .kontakt strong {
      color: #0d74db;
    }

    footer {
      position: sticky;
      background: #003366;
      color: #fff;
      text-align: center;
      padding: 18px 0;
      margin-top: 40px;
      font-size: 0.95em;
      z-index: 2999;
    }
    @media (max-width: 800px) {
      .leistungen, .facts { flex-direction: column; }
      main { padding: 18px 5vw; }
    }

   button {
    background-color: #292c2e;
    color: white;
    cursor: pointer;
    font-weight: bolder;
    font-size: larger;
}
/* Container */
.container,{
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgb(12, 12, 12);
    overflow: visible;
}
.button a {
    display: inline-block;
    background: #003366;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.button a:hover {
    background: #60a5fa;
    color: #003366 !important;
}