/* =======================
   Google Font Einbindung
   ======================= */
   @import url('https://fonts.googleapis.com/css2?family=Bosch+Sans:wght@400;700&display=swap');

   /* =======================
      Grundlegende Body-Stile
      ======================= */
   body {
     font-family: 'Bosch Sans', sans-serif;
     margin: 0;
     padding: 0;
     background-color: white;
     color: black;
     padding-top: 95px;
   }
   
   /* =======================
      Header-Bereich
      ======================= */

      .supergrafik-top {
        position: fixed;
        top: -0.5rem;
        left: 0;
        width: 100vw;
        height: 0.5rem;
        z-index: 1100;
      }
      
      .supergrafik-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .header {
        position: fixed;
        top: 0.5rem;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 5rem;
        padding: 0 2rem;
      }

      .Bosch-logo {
        height: 2.5rem;
        width: auto;
      }
      .home {
        margin-top: -0.3rem;
        height: 2.5rem;
        width: auto;
      }
      .questionmark {
        height: 2.5rem;
        width: auto;
        margin-top: -0.3rem;
        margin-right: 5rem;
      }

      .header nav {
        display: flex;
        gap: 1.5rem;
        margin-right: 0rem;
        margin-top: 1rem;
      }
      
      .header nav a {
        font-family: 'Bosch Sans', sans-serif;
        text-decoration: none;
        font-size: 1.5em;
        color: rgb(0, 0, 0);
      }
      
      .header nav a:hover {
        text-decoration: underline;
      }

      .menu-toggle {
        display: none;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
      }

      .title-section {
        text-align: left;
        padding: 1.33rem;
        margin-left: 11rem;
        margin-top: 0rem;
        color: #000000;
        font-family: 'Bosch Sans', sans-serif;
        font-size: 40px;
        max-width: 1210px;
      }
      
      /* =======================
         Panorama-Section
      ======================= */
      .panorama {
        width: 80%;
        height: 38rem;
        overflow: hidden;
        display: block;
        margin: 0 auto;
      }
      
      .panorama-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 35%;
        display: block;
      }

      .white-space {
        height: 6.25rem;
        padding: 0.313rem 1.25rem;
        background: white;
        text-align: center;
      }
      
      .white-space h2 {
        font-family: 'Bosch Sans', sans-serif;
        font-size: 2.5em;
        margin-bottom: 1.25rem;
        color: #000000;
      }

      .white-spaceflowchart {
        width: 75rem; /* Maximale Breite für große Bildschirme */
        max-width: 90%; /* Sorgt dafür, dass es auf kleineren Bildschirmen nicht überläuft */
        height: auto; /* Höhe automatisch anpassen */
        padding: 1rem;
        background: rgb(255, 255, 255);
        text-align: center;
        font-family: 'Bosch Sans', sans-serif;
        font-size: 1.2rem;
        color: #2d2d2d;
        margin: 2rem auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      @media screen and (max-width: 1024px) {
        .white-spaceflowchart {
          width: 100%;
          max-width: 80%;
          font-size: 1.1rem;
          padding: 1.5rem;
        }
      }

      @media screen and (max-width: 768px) {
        .white-spaceflowchart {
          max-width: 90%;
          font-size: 1rem;
          text-align: center;
          padding: 1rem;
        }
      }

      @media screen and (max-width: 480px) {
        .white-spaceflowchart {
          max-width: 95%;
          font-size: 0.9rem;
          padding: 0.8rem;
        }
      }
      
      
      .flowchart {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin: 2.5rem 0;
      }
      
      .flowchart a {
        display: block;
        transition: transform 0.3s ease-in-out;
      }
      
      .flowchart-img {
        width: 31rem;
        height: auto;
        border-radius: 0.626rem;
        transition: transform 0.3s ease-in-out;
        margin-top: 2rem;
        margin-bottom: 7rem;
      }
      
      .flowchart a .flowchart-img:hover {
        transform: scale(1.1);
      }

      @media screen and (max-width: 1024px) {
        .header {
          padding: 0 1rem;
        }
        
        .header nav {
          gap: 1rem;
          margin-right: 2rem;
        }
      
        .title-section {
          margin-left: 5rem;
          font-size: 2rem;
        }
      
        .panorama {
          width: 90%;
          height: 30rem;
        }
      
        .white-space h2 {
          font-size: 2rem;
        }
      
        .flowchart {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
        }
      
        .flowchart-img {
          width: 80%;
          max-width: 500px;
          margin-bottom: 2rem;
        }
      }

      @media screen and (max-width: 768px) {
        .header {
          height: 4rem;
          padding: 0 1rem;
        }
      
        .Bosch-logo {
          height: 2rem;
        }
      
        .header nav {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 4rem;
          left: 0;
          width: 100%;
          background: white;
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          padding: 1rem;
        }
      
        .header nav a {
          font-size: 1rem;
          padding: 0.5rem;
        }
      
        .menu-toggle {
          display: block;
        }
      
        .title-section {
          margin-left: 1rem;
          font-size: 1.8rem;
          text-align: center;
        }
      
        .panorama {
          width: 100%;
          height: 20rem;
        }
      
        .white-space {
          height: auto;
          padding: 1rem;
        }
      
        .white-space h2 {
          font-size: 1.8rem;
        }
      
        .flowchart {
          flex-direction: column;
          align-items: center;
        }
      
        .flowchart-img {
          width: 100%;
          max-width: 400px;
        }
      }

      @media screen and (max-width: 480px) {
        .title-section {
          font-size: 1.5rem;
          margin-left: 0;
          text-align: center;
          padding: 1rem;
        }
      
        .panorama {
          height: 15rem;
        }
      
        .white-space h2 {
          font-size: 1.5rem;
        }
      
        .flowchart-img {
          width: 90%;
          max-width: 350px;
        }
      }
      
   
 /* =======================
    Footer
    ======================= */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  .o-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .o-footer__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
  }
  
  .o-footer__links a {
    color: white;
    text-decoration: none;
  }
  
  .o-footer__links a:hover {
    text-decoration: underline;
  }
  
  .o-footer__copyright {
    display: flex;
    align-items: center;
    font-size: small;
  }
   
 /* =======================
    Footer
    ======================= */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
  }
  
  .o-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .o-footer__links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
  }
  
  .o-footer__links a {
    color: white;
    text-decoration: none;
  }
  
  .o-footer__links a:hover {
    text-decoration: underline;
  }
  
  .o-footer__copyright {
    display: flex;
    align-items: center;
    font-size: small;
  }
  
  /* =======================
      Responsive Design
      ======================= */
  @media (max-width: 768px) {
    .o-footer__bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .o-footer__links {
      flex-direction: column;
      gap: 1rem;
    }
  }
 
  /* =======================
      Struktur und Layout
      ======================= */
  .o-footer__top {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  
  .m-language-selector,
  .o-footer__links,
  .o-footer__share {
    margin-top: 2rem;
  }
  
  .o-footer__bottom {
    font-size: small;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
  }
  
  .o-footer__back-to-top {
    position: absolute;
    top: -0.25rem;
    right: -0.75rem;
  }
  
  .o-footer__back-to-top .a-icon {
    font-size: 2.25rem;
  }
  
  /* =======================
      Links und Listen
      ======================= */
  .o-footer__links li {
    font-size: inherit;
    padding: 0;
    list-style: none;
  }
  
  .o-footer__links li::before {
    content: none;
  }
  
  .o-footer__links a {
    color: var(--integrated__enabled__front__default);
    text-decoration: none;
  }
  
  .o-footer__links a:hover {
    color: var(--integrated__enabled__front__hovered);
  }
  
  .o-footer__links a:active {
    color: var(--integrated__enabled__front__pressed);
  }
  
  /* =======================
      Tablet-Version
      ======================= */
  @media (min-width: 768px) {
    .o-footer__search {
      align-items: baseline;
      display: flex;
    }
  
    .o-footer__search .m-search-form {
      flex: 1;
      margin-left: 2rem;
    }
  
    .o-footer__search-cta {
      flex: 1;
      margin-bottom: 0;
    }
  
    .o-footer__top {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-top: 3.5rem;
      padding-bottom: 3.5rem;
    }
  
    .o-footer__claim {
      margin-top: 0.5rem;
      width: 60%;
    }
  
    .o-footer__bottom {
      display: flex;
      flex-wrap: wrap-reverse;
    }
  
    .o-footer__copyright {
      margin-right: 1.5rem;
    }
  
    .m-language-selector {
      order: 2;
      width: 100%;
    }
  
    .o-footer__links {
      order: 3;
    }
  
    .o-footer__top .o-footer__links,
    .o-footer__bottom .o-footer__links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
  
    .o-footer__top .o-footer__links li,
    .o-footer__bottom .o-footer__links li {
      display: inline-block;
      margin-bottom: 0;
    }
  
    .o-footer__top .o-footer__links li:not(:last-child),
    .o-footer__bottom .o-footer__links li:not(:last-child) {
      margin-right: 1.5rem;
    }
  
    .o-footer__bottom .o-footer__links {
      padding-right: 3rem;
    }
  
    .o-footer.-minimal .o-footer__bottom {
      flex-direction: row;
      justify-content: space-between;
      padding: 0.5rem 0;
    }
  }
  
  /* =======================
      Desktop-Version
      ======================= */
  @media (min-width: 1024px) {
    .o-footer .m-language-selector {
      width: unset;
    }
  
    .o-footer__search-cta {
      font-size: x-large;
    }
  
    .o-footer__top .o-footer__links {
      align-self: start;
      justify-self: end;
      margin-top: 1.9375rem;
    }
  
    .o-footer.-minimal .o-footer__bottom {
      flex-direction: row;
      justify-content: space-between;
      padding: 0.5rem 0;
    }
  }