
    /* Gemeinsame Stilregeln */
    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f5f5f5;
      color: #ffffff;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #5b4081;
      /* Dunkles Violett */
      padding: 10px;
      text-align: center;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      height: 60px;
    }

    header .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    header .logo img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    header .contact-icons {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      margin-left: auto;
      margin-top: auto;

    }


    /* Abschnitte */
    section {
      padding: 50px 0;
      text-align: center;
    }

    section.about {
      background-color: #d6c1d3;
      /* Hellviolett */
      color: #fff;
    }

    .about-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
    }

    .about-image {
      flex: 1;
      margin-right: 20px;
    }

    .about-image img {
      width: 100%;
      max-width: 400px;
      border-radius: 5px;
    }

    .about-text {
      flex: 1;
      text-align: left;
      padding-right: 20px;
    }

    section.services {
      background-color: #9f97dd;
      /* Lila */
      color: #333;
    }

    section.references {
      background-color: #d6c1d3;
      /* Dunkles Pink */
      color: #fff;
    }

    section.contact {
      background-color: #f9f9f9;
      /* Hellgrau */
      padding-bottom: 80px;
    }

    section h2 {
      font-size: 50px;
      margin-bottom: 50px;
      color: #333;
      text-transform: uppercase;
    }

    section p {
      font-size: 18px;
      color: #404040;
      line-height: 1.5;
    }

    section ul {
      list-style-type: none;
      padding: 0;
    }

    section ul li {
      margin-bottom: 10px;
    }

    /* Referenzen */
    section ul.references {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    section ul.references li {
      width: 250px;
      margin: 10px;
      padding: 10px;
      background-color: #ca58b7;
      /* Pink */
      border-radius: 5px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    section ul.references li:hover {
      transform: translateY(-5px);
    }

    section ul.references li img {
      width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 10px;
    }

    section ul.references li h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #fff;
    }

    /* Kontakt */
    section.contact p {
      margin-bottom: 10px;
    }

    section.contact .contact-icons {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }

    section.contact .contact-icons i {
      font-size: 24px;
      margin-right: 10px;
      color: #5b4081;
      /* Dunkles Violett */
    }

    section.contact a {
      color: #5b4081;
      /* Dunkles Violett */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    section.contact a:hover {
      color: #ca58b7;
      /* Pink */
    }

    /* Footer */
    footer {
      background-color: #8cb3ed;
      /* Blau */
      color: #fff;
      padding: 20px;
      text-align: center;
    }

    #werbung {
      font-size: small;
    }


    /* Farbige Akzente */
    .accent-bg {
      background-color: #ca58b7;
      /* Pink */
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
    }

    .accent-text {
      color: #ca58b7;
      /* Pink */
    }

    #abc {
      background-color: #8cb3ed;
    }

    #services-img {
      /* größe der Bilder in den Tabellen!! */
      width: 30px;
      height: auto;
    }

    /* Responsive Anpassungen */
    @media (max-width: 768px) {
      section {
        padding: 40px 0;
      }

      .about-content {
        flex-direction: column;
      }

      .about-image {
        margin-right: 0;
        margin-bottom: 20px;
        
      }

      .about-text {
        text-align: center;
        padding-left:  20px;
      }

      section ul.references li {
        width: 100%;
      }

    }


    /* Smoother Übergang zwischen den Abschnitten */
    html {
      /* scroll-behavior: smooth;  isch der grund wegen scroll */
    }

    /* Videohintergrund */
    .header-video {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .header-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .header-content {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 10px;
      text-align: center;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      height: 60px;
      z-index: 2;
    }

    .header-content .logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header-content .logo img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    .header-content .contact-icons {
      display: flex;
      align-items: center;
    }

    .header-content .contact-icons a {
      display: inline-block;
      margin-right: 20px;
      color: #fff;
      font-size: 20px;
      text-decoration: none;
    }