<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  margin: 0;
  font-size: 18px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding: 0;
  text-align: left;
  color: #151515;
}

/* ----------------------------------------- */

/* Main */

main {
  max-width: 1080px;
  margin: auto;
  padding: 1rem;
  background-color: rgb(255, 255, 255);
}

/* ----------------------------------------- */

.cta-button, .cta-button:visited {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #0056b3; 
  color: white; 
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #45a049; 
  
}

.tips {
  padding: 20px;
  background-color: rgb(236, 236, 236);
  font-size: 14px;
  line-height: 1rem;
}

.tips a {
  cursor: pointer;
  }

/* ----------------------------------------- */



h1, h2, h3, h4 {
  margin-bottom: 1rem;
  margin-bottom: 2rem;


}

h1 {
  font-size: 3.6rem;
  font-weight: 600;
  padding: 1rem;
  line-height: 4.8rem;
  margin-bottom: 6rem;

}

li {
  line-height: 3rem;
  list-style: none;
  margin: 0;
}

h2 {
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 3rem;

}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 30px 0;
  line-height: 2rem;
}

p {
  margin-bottom: 1rem;
  line-height: 2rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
  body {
      font-size: 16px;
  }

  h1 {
      font-size: 2.2rem;
      line-height: 3rem;
  }

  h2, h3 {
    font-size: 1.6rem;
    line-height: 2.6rem;
    text-align: left;
}

p {
  text-align: left;
}
}



/* ----------------------------------------- */


/* Links */
a {
  color: rgb(255, 5, 5); 
  text-decoration: underline; 
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

a:active {
  color:#45a049; 
}

a:visited {
  color: rgb(132, 132, 132); 
}


/* ----------------------------------------- */

.spacing-module {
  width: 100%;
  height: 5vh; /* Verwendet die HÃ¶he relativ zur BildschirmhÃ¶he */
  clear: both; /* Stellt sicher, dass das Modul nach Float-Elementen korrekt angezeigt wird */
  box-sizing: border-box;
}

.spacing-module-XL {
  width: 100%;
  height: 10vh; /* Verwendet die HÃ¶he relativ zur BildschirmhÃ¶he */
  clear: both; /* Stellt sicher, dass das Modul nach Float-Elementen korrekt angezeigt wird */
  box-sizing: border-box;
}

.spacing-module-small {
border-bottom: 1px solid; 
  width: 100%;
  height: 1vh; /* Verwendet die HÃ¶he relativ zur BildschirmhÃ¶he */
  clear: both; /* Stellt sicher, dass das Modul nach Float-Elementen korrekt angezeigt wird */
  box-sizing: border-box;
  border-color: #d3d3d3;
}


/* Anpassungen fÃ¼r kleinere Bildschirme */
@media (max-width: 768px) {
  .spacing-module {
      height: 4vh; /* Etwas mehr HÃ¶he auf kleineren Bildschirmen */
  }
}

/* Anpassungen fÃ¼r sehr kleine Bildschirme (Smartphones) */
@media (max-width: 480px) {
  .spacing-module {
      height: 2vh; /* Noch mehr HÃ¶he auf Smartphones */
  }
  .spacing-module-XL {
    width: 100%;
    height: 2vh;
  }
}

/* ----------------------------------------- */

.hero {
  width: 100%;
  height: 30vh;
  max-height: 40vh;
  background-color: #d0d0d0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.brand-name p {
  font-size: 0.8rem;
  font-family: monospace, "Helvetica", Arial;
  font-weight: 600;
  letter-spacing: 1px;
  color: transparent;
  animation: fadeIn 1.5s ease-in-out forwards;
  margin: 0; /* Entfernt den Abstand zwischen den AbsÃ¤tzen */
  line-height: 1.3; /* Verringert den Zeilenabstand */
}

@keyframes fadeIn {
  to {
      color: #333; 
  }
}

@media (max-width: 768px) {
  .brand-name p {
      font-size: 1.3rem;
      text-align: right;
      padding: 1rem;
  }
}


/* ----------------------------------------- */



.heading-module {
  text-align: left;
  padding: 3rem 0;
  margin-bottom: 20px;
  background-color: #ffffff; 
  border-top: 1px solid;
  border-color: #d3d3d3;
}


.heading-module h2 {
  margin: 0;
  font-size: 2.0rem;
  padding: 10px;
  line-height: 3rem;
  color: white;
  background-color: black;
}


/* Anpassungen fÃ¼r kleinere Bildschirme */
@media (max-width: 768px) {
  .heading-module {
      font-size: 2.0rem; /* Kleinere SchriftgrÃ¶ÃŸe fÃ¼r MobilgerÃ¤te */
    line-height: 3rem;
    text-align: left;
  }
}


/* ----------------------------------------- */



.banner-container {
  display: flex;
  justify-content: space-between;
  align-items:flex-start;
  background-color: #f0f0f0;
  padding: 1.5rem; 
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image {
  flex-basis: 50%;
  max-width: 50%;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
}


.banner-text {
  flex-basis: 50%;
  padding: 0 2rem; 
  text-align: left;
  
}

.banner-text h2 {
  font-size: 24px; /* SchriftgrÃ¶ÃŸe anpassen */
  margin-bottom: 10px; /* Abstand anpassen */
  line-height: 2.4rem; 
  
}

.banner-text p {
  font-size: 16px; /* SchriftgrÃ¶ÃŸe anpassen */
  margin-bottom: 30px; /* Abstand anpassen */
}

/* Media-Query fÃ¼r Smartphones */
@media screen and (max-width: 820px) {
  .banner-container {
    flex-direction: column; /* Ã„ndern Sie die Anordnung auf vertikal */
    text-align: center; /* Text zentrieren */
  }

  .banner-image {
    max-width: 100%;
    margin-bottom: 20px; /* Abstand zwischen Bild und Text hinzufÃ¼gen */
  }

  .banner-text {
    flex-basis: 100%;
    padding: 0 20px; /* Abstand anpassen */
  }
}



/* ----------------------------------------- */

/* Banner */

.banner-module {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.banner-module a {
  display: block;
  width: 100%;
  text-align: center;
}

.banner-module img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------- */

/* Interview Container */
.interview-container {
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 8px;
}

.attention {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 1rem; /* Angepasst fÃ¼r besseren Abstand */
}

.intro-with-image {
  display: flex;
  align-items: flex-start; /* Bild und Text oben ausrichten */
}

.profile-pic {
  width: 80px; /* GrÃ¶ÃŸe des Bildes */
  height: 80px; /* GrÃ¶ÃŸe des Bildes */
  border-radius: 50%; /* Kreisform */
  margin-right: 20px; /* Abstand zum Text */
  padding: 2rem 10px;
  object-fit: cover; /* Sorgt dafÃ¼r, dass das Bild den Container vollstÃ¤ndig ausfÃ¼llt */
}

/* Stil fÃ¼r den Absatz neben dem Bild */
.intro-with-image p {
  flex: 1; /* Nimmt verfÃ¼gbaren Platz ein */
}

.question {
  margin-top: 2.5rem;
}

.answer {
  font-style: oblique;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgb(208, 208, 208);
  margin-top: 2rem;
}

.quelle {
  width: 100%;
  margin: 2rem 0;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.2rem;
  color: grey;
}

@media (max-width: 768px) {
  .attention {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 3rem;
    margin-bottom: 1rem; /* Angepasst fÃ¼r besseren Abstand */
  }

  .interview-container {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f4f4f4;
  }
  
}


/* ----------------------------------------- */

/* Stage */

.stage-module {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.stage-module img {
  width: 100%;
  height: auto;
  display: block;
}

/* Standardbild */
.stage-module {
  background-image: url('../data/pix/serviceroboter-banner-hero-desktop.webp');
  background-size: cover;
  background-position: center;
  height: 60vh; /* oder jede andere gewÃ¼nschte HÃ¶he */
}

/* Bild fÃ¼r mobile GerÃ¤te */
@media only screen and (max-width: 768px) {
  .stage-module {
    background-image: url('../data/pix/serviceroboter-banner-hero-mobile.webp'); /* Pfad zum mobilen Bild */
    height: 50vh; /* Anpassung der HÃ¶he fÃ¼r mobile GerÃ¤te */
  }
}


/* ----------------------------------------- */

/* Image Module */
.image-module {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.image-module a {
  display: block;
  width: 100%;
  text-align: center;
}

.image-module img {
  width: 100%;
  height: auto;
  display: block;
}





.tech-implementation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* Sorgt fÃ¼r Ausrichtung an der Oberkante */
  margin-bottom: 20px;
  width: 100%;
}

.tech-image {
  width: 300px; /* GrÃ¶ÃŸere Darstellung des Bildes */
  margin: 30px 30px;
  /* Entfernt align-self fÃ¼r direkte Ausrichtungskontrolle */
}

.tech-content {
  flex: 1;
}

@media (max-width: 768px) {
  .tech-section {
      flex-direction: column;
      align-items: center;
  }

  .tech-image {
      width: 100%; /* Anpassung fÃ¼r kleinere Bildschirme */
      max-width: 300px; /* Begrenzt die GrÃ¶ÃŸe des Bildes */
      margin-bottom: 10px;
  }

  .tech-content {
      text-align: center; /* Zentriert den Text unter dem Bild */
  }
}



/* ----------------------------------------- */


/* Modul Text */

.module-text {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;

}

.module-text .two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}

.module-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.column2 {
  flex: 0 0 100%; /* Auf kleineren Bildschirmen die volle Breite einnehmen */
  line-height: 1.2em;
  text-align: left;
}

.column2 h3 {
  line-height: 2.2rem;
  margin: 15px 0;
  text-align: left;
  }

  .column2 p {
    line-height: 2rem;
    margin-bottom: 0px;
    text-align: left;
    }


/* Media Query fÃ¼r kleinere Bildschirme */
@media (min-width: 768px) {
  .column2 {
    flex: 0 0 47%; /* Auf grÃ¶ÃŸeren Bildschirmen die Breite auf 48% setzen */
    text-align: left;
  }
  .column3 {
    flex: 0 0 31%; /* Auf grÃ¶ÃŸeren Bildschirmen die Breite auf 32% setzen */
  }

}

/* ----------------------------------------- */


/* FAQ-Modul */

.faq-container {
  max-width: 100%; /* Stellt sicher, dass der Container die gesamte Breite einnimmt */
  margin: 0 auto;
  text-align: left;
}

.faq-container h3 {
  text-align: left;
  margin-top: 0;
  padding-top: 20px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  width: 100%; /* Sorgt dafÃ¼r, dass jedes FAQ-Element die gesamte Breite einnimmt */
  box-sizing: border-box; /* Padding und Border werden in die Breite einbezogen */
}

.faq-toggle {
  display: none; /* Versteckt die Checkbox */
}

.faq-question {
  background-color: white;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: block; 
  width: 100%; /* Dehnt die Frage Ã¼ber die gesamte Breite */
  box-sizing: border-box; /* Padding und Border in die Breite einbeziehen */
}

.faq-question:hover {
  background-color: #7cebf9; /* Hover-Hintergrundfarbe */
  color: #333; /* Textfarbe bei Hover */
}

.faq-toggle:checked + .faq-question {
  background-color: #e5e5e5;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  display: block;
  padding: 20px;
  width: 100%; /* Sorgt dafÃ¼r, dass die Antwort die gesamte Breite nutzt */
  box-sizing: border-box;
}

.faq-answer {
  display: none;
  padding: 0;
  margin: 0;
}

/* Antwort- und Listen-Elemente */
.faq-answer a, 
.faq-answer p {
  line-height: 2rem;
  margin: 0 auto;
}

.faq-answer li {
  line-height: 2rem;
  margin: 0 auto;
}



/* ----------------------------------------- */

/* Footer */
footer {
  font-size: 12px;
  text-align: left;
}

footer p {
  line-height: 16px;
}


/* ----------------------------------------- */

/* Gesamter Header */
header {
  background: black;
  color: #333;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center; /* Zentriert die gesamte Navigation */
  align-items: center;
  flex-wrap: wrap; /* Damit die Inhalte auf kleinen Bildschirmen umbrechen kÃ¶nnen */
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Logo */
.logo {
  margin-top: 2px;
  display: flex;
  align-items: center;
  margin-right: auto; /* Bewegt das Logo nach links, um Platz zu sparen */
  font-size: 0.5rem;
  font-weight: 600;
  color:#55e3f6;
  text-transform: uppercase;
}

.logo img {
  height: 40px;
  padding: 10px 5px;
  margin-right: 1px;
}

/* MenÃ¼ */
#menu {
  display: flex;
  gap: 15px; /* Abstand zwischen den MenÃ¼elementen */
  list-style: none;
  margin: 0;
  padding: 0;
}

#menu li a {
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px 5px;
  letter-spacing: 1px;;
  transition: color 0.3s ease;
  margin: 5px 10;
}

#menu li a:hover {
  color: #55e3f6; /* Hover-Farbe */
  cursor: pointer;

}

/* Burger-MenÃ¼-Icon */
.menuIcon {
  display: none;
  cursor: pointer;
    padding-right: 10px;
}

.menuIcon .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.menuToggle {
  display: none; /* Checkbox versteckt */
}

/* Responsive Design */
@media (max-width: 840px) {
  .menuIcon {
    display: block; /* Burger-MenÃ¼ sichtbar */
  }

  #menu {
    display: none;
    position: fixed;
    top: 82px;
    padding-left: 119px;
    width: 100%;
    flex-direction: column;
    align-items: left;
    background: black;
    z-index: 1100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: auto 0;
  }

  #menuToggle:checked + .menuIcon + #menu {
    display: flex;
  }

  #menu li {
    margin-bottom: 10px;
    text-align: left;
  }
}



/* ----------------------------------------- */
/* Benefits */
.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 1rem;
  }

.benefits {
  flex-basis: calc(33% - 40px);
  margin: 20px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgb(194, 194, 194);
  text-align: left;
  box-sizing: border-box;
}

.benefits h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.benefits p {
  font-size: 0.9rem;
  line-height: 1.6rem;
  color: #666;
}

.icon {
  width: 50px; /* BeispielgrÃ¶ÃŸe, anpassen nach Bedarf */
  height: 50px; /* BeispielgrÃ¶ÃŸe, anpassen nach Bedarf */
  margin: 0 auto 1rem;
  fill: #b8a66c; /* Farbe des Icons, anpassen nach Bedarf */
}

@media (max-width: 1024px) {
  .benefits {
    flex-basis: calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  .benefits {
    flex-basis: 100%;
    max-width: 500px;
    margin: 20px auto;
  }
}




/* ----------------------------------------- */



.datenschutz-hinweis p {
  width: 100%;
  padding-top: 1rem;
  margin: auto 0;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: grey;
}

/* ----------------------------------------- */

.main-container {
  position: relative;
}

.bild {
  width: 100%; /* Anpassen Sie die Breite nach Bedarf */
  height: auto;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9998;
}

.vergroessertes-bild {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
}

.vergroessertes-bild img {
  max-width: 90%;
  max-height: 90%;
}

.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

#zoomCheckbox {
  display: none;
}

#zoomCheckbox:checked ~ .overlay {
  display: block;
}

#zoomCheckbox:checked ~ .vergroessertes-bild {
  display: block;
}

</pre></body></html>