    body {
      font-family: "Comic Neue", 'Verdana', 'Arial sans-serif', sans-serif;
      font-weight: 400;
      font-style: normal;
      margin: 0;
      background-color: #e0f7fa;
      color: #333;
      overflow-x: hidden;
      font-size: 17px;
      line-height: 1.3rem;
    }

    .wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    header {
      background-color: #b3e5fc;
      color: #004d63;
      padding: 1.5rem 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: -webkit-sticky; /* Für Safari */
      position: sticky;
      top: 0;
      z-index: 1000; /* Stellt sicher, dass der Header über anderen Inhalten bleibt */
    }


    header img {
      height: 60px;
      width: auto;
    }

    header h1 {
      font-size: 1.6rem;
      margin: 0;
      text-align: center;
      width: 100%;
    }

    .header-wrap{
      width: 900px;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      justify-content: left;
    }
  

    .language-switcher {
      width: 100px;
    }

    .language-switcher a{
      color: inherit;
      font-weight: 700;
      text-decoration: none;
    }

    .language-switcher a:hover{
      text-decoration: underline;
    }

    .language-switcher a.active{
      text-decoration: underline;
    }

    .container {
      padding: 2rem 0;
      position: relative;
    }

    h2 {
      color: #003366;
      margin-bottom: 1rem;
      font-size: 1.4em;
    }

    h3 {
      color: #000;
      margin-bottom: 1rem;
      font-size: 1.2em;
      font-style: normal;
    }

    .contact h3 {
      color: #fff;
    }

    h4 {
      color: #000;
      margin-bottom: 1rem;
      font-size: 1em;
    }

    section{
      margin-bottom:3rem;
    }

    section.whitebox1{
      background: #fff;
      padding: 1rem 2rem; 
      border-radius: 15px;
      box-shadow: 0 0 10px #ccc;
      width:40%;
      float: left;
      min-height: 380px;
      margin-right: 3rem;
    }

    section.whitebox2{
      background: #fff;
      padding: 1rem 2rem; 
      border-radius: 15px;
      box-shadow: 0 0 10px #ccc;
      width:40%;
      float: left;
      min-height: 380px;
      margin-right: 0;
    }

    section.whitebox{
      background: #fff;
      padding: 1rem 2rem; 
      border-radius: 15px;
      box-shadow: 0 0 10px #ccc;
      clear:left;
    }

    .features {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .feature {
      background: #ffffffc2;
      border-radius: 20px;
      padding: 1rem;
      width: 28%;
      text-align: center;
      box-shadow: 0 0 10px #ccc;
      transition: transform 0.3s ease;
    }

    .feature:hover {
      transform: scale(1.05);
    }

    .lessons{
          width: 28%;
    }

    .about-flex {
      display: flex;
      align-items: top;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1 1 55%;
      margin-left: auto; /* bündig mit dem Rest */
    }

    ul{
      padding: 0;
    }

    li { 
      list-style: none;
      padding: 5px 30px;
      background-image: url("listenpunkt.png");
      background-repeat: no-repeat;
      background-position: left 6px;
      background-size: 20px;
    }

    .portrait {
      float: right;
      margin:0 0 0 3rem;
    }

    .portrait img {
      width: 220px;
      height: 220px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 0 10px #aaa;
    }

    .contact {
      background-color: #66bb6a;
      padding: 1.5rem;
      border-radius: 15px;
      box-shadow: 0 0 10px #558b2f;
      color: white;
      margin-top: 3rem;
    }

    .contact h2 {
      color: white;
    }

    .contact a {
      color: white;
      text-decoration: underline;
    }

    .contact a:hover {
      text-decoration: none;
    }

    .testimonials {
      margin-top: 3rem;
    }

    .testimonials h2 {
      text-align: center;
      margin-bottom: 1rem;
    }

    .testimonial {
      background: #ffeb3b;
      border-radius: 15px;
      padding: 2rem 4rem;
      box-shadow: 0 0 10px #ccc;
      font-style: italic;
      min-height: 300px;
      position: relative;
      text-align: center;
      align-items: center;
    }

    .testimonial-nav {
      position: absolute;
      bottom: 1rem;
      width: 97%;
      display: flex;
      justify-content: space-between;
      left: 0;
      padding: 0 1rem;
    }

    .testimonial-nav button {
      background-color: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #000;
      font-weight: bold;
    }

    .testimonial-nav button:hover {
      color: #333;
    }

    .methode{
      display: flex;
      flex-wrap: wrap;
    }

    .methode p{
      margin:0;
    }

    .img-methode{
      width: 48%;
      height: auto;
      margin: 2rem 1rem 0 0;
    }

    .img-methode img, .img-methode iframe{
      width: 100%;
      border-radius: 15px;
    }

    .img-methode-2{
      width: 31%;
      height: auto;
      margin: 2rem 1rem 0 0;
    }

    .img-methode-2 img, .img-methode-2 iframe{
      width: 100%;
      border-radius: 15px;
    }

    footer {
      background-color: #ff69b4;
      color: white;
      text-align: center;
      padding: 1.5rem 1rem;
      margin-top: 2rem;

    }

    footer p{
      margin: 0;
      display: flex; 
      gap: 1rem;
      align-items: center; 
      justify-content: center;
   }

    /* Farbtupfer */
    .blob {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
      z-index: 0;
      animation: float 8s ease-in-out infinite;
    }

    .blob.pink { background: #ff69b4; width: 150px; height: 150px; top: 50px; left: -50px; }
    .blob.blue { background: #00bcd4; width: 200px; height: 200px; top: 400px; right: -60px; }
    .blob.green { background: #8bc34a; width: 120px; height: 120px; bottom: 100px; left: 10%; }
    .blob.yellow { background: #ffeb3b; width: 140px; height: 140px; top: 150px; right: 20%; }
    .blob.parasuit { background-image: url("parasuit.png"); width: 68px; height: 94px; top: 150px; left: 15%;}
    .blob.parasuit2 { background-image: url("parasuit.png"); width: 68px; height: 94px; top: 650px; right: 35%;}

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }

    @media only screen and (max-width: 600px) {

    .blob.pink { background: #ff69b4; opacity: 0.3; width: 150px; height: 150px; top: 250px; left: -80px; }
    .blob.blue { background: #00bcd4; opacity: 0.2; width: 200px; height: 200px; top: 1800px; right: 40px; }
    .blob.green { background: #8bc34a; opacity: 0.2; width: 120px; height: 120px; top: 1200px; left: 15%; }
    .blob.yellow { background: #ffeb3b; opacity: 0.3; width: 140px; height: 140px; top: 780px; left: 250px; }
    .blob.parasuit { display: none}
    .blob.parasuit2 { background-image: url("parasuit.png"); width: 68px; height: 94px; top: 150px; right: 10%;}
    .blob.parasuit3 { background-image: url("parasuit.png"); width: 68px; height: 94px; top: 1400px; left: 60%;}

    .portrait {
      float: none;
      margin:0;
    }

    .portrait img {
      width: 350px;
      height: 350px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 0 10px #aaa;
    }

    .methode{
      display: block;
    }

    .img-methode, .img-methode-2{
      width: 100%;
      height: auto;
    }

    footer p{
      display: flex; 
      flex-direction: column;
   }

    section.whitebox1,
    section.whitebox2{
      width:auto;
      float: none;
      margin: 0 0 3rem 0;
      min-height: auto;
    }

    header img {
      margin: 0 auto;
      display: block;
    }

    header h1 {
      font-size: 1.3rem;
      width: 100%;
      margin-bottom: 1em;
    }

    .header-wrap{
      display: flow;
    }
  
    .language-switcher {
      margin: 0 auto;
      display: block;    
    }

    .features {
      display: flow;
    }

    .feature, .lessons{
      margin: 0 auto;
      display: block; 
      width: auto;
      margin-bottom: 1em;
    }

    .testimonial-nav {
      width: 94%;
    }
}