/* =======================
   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: 5rem;
   }

   /* =======================
      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: 0rem;
      }

      .header nav {
        display: flex;
        gap: 1.5rem;
        margin-right: 5rem;
        margin-top: 1rem;
      }

      .header nav a {
        font-family: 'Bosch Sans', sans-serif;
        text-decoration: none;
        font-size: 1.5rem;
        color: rgb(0, 0, 0);
      }
      
      .header nav a:hover {
        text-decoration: underline;
      }
   

/* =====================
      BREADCRUMBS
   =====================  */      
   .breadcrumbs {
    position: absolute; 
    top: 6.5rem; 
    left: 2rem; 
    background: transparent; 
    padding: 10px;
    font-family: 'Bosch Sans', sans-serif;
    font-size: 1.2rem;
    border-radius: 0px;
    box-shadow: 0px 4px 6px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.breadcrumb {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.breadcrumb:hover {
    color: #007bc0;
    text-decoration: underline;
}

.separator {
    margin: 0 1px;
    color: #666;
}




   .title-top {
    text-align: left;
    padding: 1.33rem;
    margin-left: 11rem;
    margin-top: 3rem;
    color: #000000;
    font-family: 'Bosch Sans', sans-serif;
    font-size: 2.5rem; 
    max-width: 1210px;
  }
  .custom-video {
    width: 100%; 
    max-width: 1400px;
    height: auto;
    display: block; 
    margin: 2rem auto; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    background-color: black; 
}

.ai-note {
  text-align: left;
  padding: 1.33rem;
  margin-left: 15%;
  margin-top: -4rem;
  color: #2f2f2f;
  font-family: 'Bosch Sans', sans-serif;
  font-size: 0.5rem; 
  max-width: 1210px;
}
.white-space1 {
  height: 5.25rem;
  padding: 0.313rem 1.25rem;
  background: white;
  text-align: center; 
}

/* ======================
    Container Steps
  ====================== */

  .container, .container2, .container3, .container4, .container5, .container6,.container7 {
    width: 70%;
    height: auto; 
    margin: 0 auto; 
    background-color: #3498db; 
    color: white; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
    padding-right: 3rem; 
    box-sizing: border-box;
    flex-wrap: wrap; 
}

.container2, .container4, .container6 {
    background-color: #ffffff;
    color: black;
}

.text-section, .text-section2, .text-section3, .text-section4, .text-section5, .text-section6, .text-section7 {
    max-width: 25rem;
}

.text-section h2, .text-section2 h2, .text-section3 h2, .text-section4 h2, .text-section5 h2, .text-section6 h2, .text-section7 h2 {
    margin: 0;
    font-size: 2rem;
}

.text-section p, .text-section2 p, .text-section3 p, .text-section4 p, .text-section5 p, .text-section6 p, .text-section7 p  {
    margin-top: 1rem;
    font-size: 1.3rem;
}

.image-section img, .image-section2 img, .image-section3 img, .image-section4 img, .image-section5 img, .image-section6 img {
    max-width: 30rem;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

/* ===============
    Responsive Anpassung
================ */

@media (max-width: 1024px) {
    .container, .container2, .container3, .container4, .container5, .container6 {
        flex-direction: column; 
        text-align: center;
        padding: 3rem;
    }

    .text-section, .text-section2, .text-section3, .text-section4, .text-section5, .text-section6,
    .image-section img, .image-section2 img, .image-section3 img, .image-section4 img, .image-section5 img, .image-section6 img {
        max-width: 80%; 
    }
}

@media (max-width: 768px) {
    .container, .container2, .container3, .container4, .container5, .container6 {
        padding: 1rem; 
    }

    .text-section, .text-section2, .text-section3, .text-section4, .text-section5, .text-section6,
    .image-section img, .image-section2 img, .image-section3 img, .image-section4 img, .image-section5 img, .image-section6 img {
        max-width: 100%; 
    }
}

/* ================
    Flowchart Bilder
================= */

.flowchart {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 5rem;
    flex-wrap: wrap; 
}

.flowchart a {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.flowchart-img {
    width: 100%;
    max-width: 31rem;
    height: auto;
    border-radius: 0.626rem;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 5rem;
}

.flowchart a:first-child .flowchart-img {
  transition: transform 0.3s ease-in-out;
}

.flowchart a:first-child .flowchart-img:hover {
  transform: scale(1.1);
}

.flowchart a:nth-child(2) .flowchart-img:hover {
transform: scale(1.1);
}
.flowchart a:nth-child(3) .flowchart-img:hover {
transform: scale(1.1);
}

@media (max-width: 1024px) {
    .flowchart {
        flex-direction: column;
        align-items: center;
    }

    .flowchart-img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .flowchart-img {
        width: 100%;
    }
}


 /* =======================
    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;
      }
    }

   