/* =======================
   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;
      }
   

      .menu-toggle {
        display: none;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
      }
      
/* =====================
      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 & INSTRUCTION
         =====================  */      
      
      .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;
      }

      .instruction {
        font-family: 'Bosch Sans', sans-serif;
        font-size: 1.5em;
        text-align: center;
        margin-top: 4rem;
        margin-left: 15%;
        margin-right: 15%;
        margin-bottom: 1.25rem;
        color: #000000;
        max-width: 75%;
      }

      @media screen and (max-width: 1024px) {
        .header {
          padding: 0 1rem;
        }
        
        .header nav {
          gap: 1rem;
          margin-right: 2rem;
        }
      
        .breadcrumbs {
          top: 6.5rem;
          left: 1rem;
          font-size: 0.9rem;
        }
      
        .title-top {
          margin-left: 6rem;
          font-size: 2rem;
        }
      
        .instruction {
          font-size: 1.3rem;
          margin: 3rem auto;
          max-width: 80%;
        }
      }

      @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: 1.5rem;
          padding: 0.5rem;
        }
      
        .menu-toggle {
          display: block;
        }
      
        .breadcrumbs {
          top: 5.5rem;
          left: 1rem;
          font-size: 0.8rem;
        }
      
        .title-top {
          margin-left: 1rem;
          font-size: 1.8rem;
          text-align: center;
          max-width: 90%;
        }
      
        .instruction {
          font-size: 1.2rem;
          margin: 2rem auto;
          text-align: center;
          max-width: 90%;
        }
      }

      @media screen and (max-width: 480px) {
        .title-top {
          font-size: 1.5rem;
          margin-left: 0;
          text-align: center;
          padding: 1rem;
        }
      
        .instruction {
          font-size: 1rem;
          margin: 1.5rem auto;
          max-width: 95%;
        }
      }

  .notification-bar {
    width: 68%; 
    height: 4rem;
    background-color: rgba(255, 223, 149, 0.8 ); 
    color: rgb(189, 153, 0);
    text-align: left;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 4rem;
    margin-bottom: 2rem;
    margin-left: 15%;
    margin-right: 15%;
    border-radius: 5px; 
  }

.faq-symbols {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    margin-top: 5rem;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.faq-symbols a {
    display: flex;
    flex-direction: column; /* Damit Bild & Text untereinander stehen */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.faq-symbols-img {
    width: 80%;
    height: auto;
    border-radius: 0.626rem;
    transition: transform 0.3s ease-in-out;
    margin-top: 3rem;
    margin-bottom: 1rem; 
}

.faq-symbols a:hover .faq-symbols-img {
    transform: scale(1.1);
}

.faq-symbols-text {
    font-family: 'Bosch Serif', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(0, 123, 192);
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .faq-symbols-img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .faq-symbols {
        flex-direction: column;
        align-items: center;
    }

    .faq-symbols-img {
        width: 80%;
    }
}


  /* =======================
    Spacer to keep footer down. Dont delete
   ======================= */
   .flowchart {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0rem;
    flex-wrap: wrap;
}

.flowchart a {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.flowchart-img {
    width: 10rem;
    height: auto;
    border-radius: 0.626rem;
    transition: transform 0.3s ease-in-out;
    margin-top: 3rem;
    margin-bottom: 7rem;
}



 /* =======================
    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;
      }
    }

   