  /* Oberer Streifen */
  #top-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #3d3d3f;
    overflow: hidden;
    z-index: 9999;
  }

  /* Text */
  #top-strip-text {
    position: absolute;
    /* Absolute Position für Animation */
    white-space: nowrap;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 30px;
  }

  body {
    margin: 0;
    background-color: #fff;
  }




  /* Header */
  #uniqueHeader {
    background: black;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #uniqueLogo {
    font-size: 20px;
  }

  /* Desktop Navigation */
  #uniqueNavDesktop {
    display: flex;
    width: 400px;
    gap: 50px;
  }

  #uniqueNavDesktop a {
    color: white;
    text-decoration: none;
  }

  /* Burger only mobile */
  #uniqueBurgerButton {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* Mobile Menü */
  #uniqueMobileMenu {
    display: none;
    background: #111;
    padding: 10px;
  }

  #uniqueMobileMenu a {
    display: block;
    color: white;
    padding: 10px 0;
    text-decoration: none;
  }

  /* Mobile Ansicht */
  @media (max-width: 600px) {
    #uniqueNavDesktop {
      display: none;
    }

    #uniqueBurgerButton {
      display: block;
    }
  }