    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      color: #333;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      /* Die Seite ist mindestens die Höhe des Viewports */
    }

    /* Container für Navigation und Hauptinhalt */
    .container {
      display: flex;
      flex: auto;
    }

    .containerSubdomain {
      /* Platz schaffen für die Navigationsleiste */
      flex: auto;
    }

    nav {
      width: 250px;      /* Feste Breite für die Navigationsleiste */
      background-color: #0055a5;
      color: white;
      padding: 20px;
      height: 100vh;      /* Volle Höhe */
      position: fixed;      /* Fixiert am linken Rand */
    }

    /* Linke Navigationsleiste */
    .navbar {
      width: 250px;
      background-color: #0055a5;      /* VLC-Blau */
      padding: 20px;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .navbar h1 {
      color: white;
      margin-bottom: 10px;      /* Reduziere den Abstand */
      font-size: 1.5em;
      text-align: left;
    }

    .navbar h1 a {
      color: white;
      text-decoration: none;
      font-size: large;
    }

    .navbar h1 a:focus,
    .navbar h1 a:active {
      outline: none;
      background-color: transparent;      /* Verhindert Blau hinterlegte Links */
    }

    .nav-links {
      list-style: none;
      padding: 0;
    }

    .nav-links li {
      margin-bottom: 10px;
    }

    .nav-links a {
      text-decoration: none;
      color: white;
      padding: 10px 15px;
      display: block;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    .nav-links a:hover {
      background-color: #ff8800;      /* VLC-Orange */
    }

    /* Hauptinhalt */
    .main-content {
      margin-left: 300px;      /* Platz für die Navbar */
      padding: 20px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      width: calc(100% - 250px);      /* Hauptinhalt nimmt den Rest des Platzes ein */

    }

    .center-image {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    img.normalWidth {
      max-width: 40%;
      height: auto;
    }
    img.mediaPlayer {
        width:45% !important;
        height: auto !important;
      }
  
    #border {
      border-radius: 10px;
      border: 2.5px solid #000000;
    }

    /* Footer */
    footer {
      text-align:center;
      margin: 0 auto; /* Zentriert den Footer bei grossen Bildschirmen */
      background-color: #0055a5;
      color: white;
      padding: 10px;
      width: 100%;
      flex-shrink: 0; /* Verhindert, dass der Footer schrumpft */
      margin-left: 150px;
    }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 1001;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 4px;
      transition: 0.3s;
    }

    @media (max-width: 768px) {
      .navbar {
        left: -100%;        /* Navbar verstecken */
        width: 103%;        /* Vollbild */
        top: 0;
        padding-top: 50px;
        transition: left 0.3s ease;        /* Weicher Übergang beim Einblenden */
      }

      .nav-links {
        width: 300px;
      }

      img {
        max-width: 85%;
        height: auto;
        border-radius: 10px;
      }

      .navbar.active {
        left: 0;        /* Navbar einblenden */
      }
      footer{
        margin-left: 0px;
      }
      .hamburger {
        display: flex;        /* Hamburger-Symbol auf kleinen Bildschirmen anzeigen */
      }

      .main-content {
        padding: 20px;
        margin-left: 0;        /* Navbar wird über dem Inhalt liegen */
        padding-left: 15%;        /* Text oben anzeigen */
      }

      .containerSubdomain {
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
        color: #333;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
      }

      .faq-container {
        margin-left: -225px;
      }
    }
    
    h1 {
      color: #ff8800;      /* VLC-Orange */
    }

    p {
      font-size: 1.1em;
      line-height: 1.5;
      color: #555;
    }

    ul {
      padding: 1;
    }
    
    .fehlerbehebung-links{
      list-style: none;
    }
    
    li {
      margin-bottom: 10px;
    }

    a {
      color: #0055a5;      /* Blau für die Links */
      text-decoration: none;
    }

    a:hover {
      color: #ff8800;      /* Hover-Farbe */
    }

    .welcome-message {
      color: #333;
      text-align: center;
    }
   