<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Stelle sicher, dass die Seite scrollbar ist, aber nicht horizontal */
html, body {
    margin: 0;
    padding: 0;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    background: url('images/hintergrundv9_1.jpg') no-repeat center top fixed;
    background-size: cover;
    position: relative;
    overflow-x: auto; /* Verhindert horizontales Scrollen */
    font-family: Arial, sans-serif;
    touch-action: pan-x pan-y;
}

* {
    box-sizing: border-box;
}

/* Hauptinhalt bleibt oben */
main {
    flex-grow: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Blur-Container fÃ¼r durchgehenden Effekt */
.blur-container {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.5);
    padding: 20px 0;
}

/* Gemeinsamer weiÃŸer Hintergrund fÃ¼r Produktbereich */
.product-wrapper {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Entferne individuellen Hintergrund */
.icon-list, .gif-section {
    background: none;
    padding: 0;
    box-shadow: none;
}

/* Kopfzeile */
.navbar {
    background: rgba(255, 255, 255, 1); /* Kein Blur */
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

/* Container fÃ¼r Logo &amp; Navigation */
.container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-container {
    position: absolute;
    left: 0;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    height: 80px;
    max-height: 100%;
    transform: scale(1.3);
    transform-origin: left center;
}

/* Navigation */
.menu {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    padding-right: 50px;
}

.nav-links li:last-child a {
    color: black;
}

.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: black;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #ff4500;
}

/* Ãœberschrift */
.main-title {
    position: relative;
    text-align: left;
    margin-left: 20px;
    margin-top: -180px;
    font-size: 2.8rem;
    color: white;
    white-space: nowrap;
    z-index: 2;
}

/* Bildcontainer */
.image-container {
    position: absolute;
    left: 0;
    top: -40px; /
    width: auto;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.content-image {
    display: block;
    max-width: 500px;
    height: auto;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
}

/* Textfarben */
.black-text {
    color: black;
}

.red-text {
    color: red;
}

/* Footer mit Icons und GIF */
.footer {
    padding: 40px;
    text-align: center;
    width: 100%;
    color: black;
    margin-top: 40px;
    background: none;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.partner-logo {
    height: 50px;
    width: auto;
    margin-left: 0px;
}


.icon-list {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
}

.icon-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    margin-top: 20px;
    
}

.icon-item i {
    font-size: 2rem;
    color: #ff4500;
    margin-right: 15px; /* Konsistenter Abstand zwischen Icon und Text */
    width: 40px; /* Feste Breite fÃ¼r alle Icons */
    text-align: center;
}

/* GIF-Bereich */
.gif-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-item span {
    display: inline-block;
    line-height: 1.2;
    text-align: left;
}

/* Scroll-Offset fÃ¼r Produktbereich */
#produkt {
    scroll-margin-top: 50px; /* HÃ¶he der Navigation berÃ¼cksichtigen */
}

.limited-gif {
    width: 100%;
    
    height: auto;
}

.product-text {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.product-text h2 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 10px;
}

.product-text p {
    font-size: 1.2rem;
    color: black;
}



/* Team Section */
.team-section {
    padding: 60px 20px;
    text-align: center;
    background: none;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: black;
}

.team-description {
    font-family: Arial, sans-serif; /* Hier kannst du eine gewÃ¼nschte Schriftart eintragen */
    font-size: 1.2rem; /* Hier die gewÃ¼nschte SchriftgrÃ¶ÃŸe einstellen */
    color: black; /* Falls du die Farbe anpassen willst */
    text-align: center; /* Falls der Text zentriert sein soll */
    margin-top: 50px; /* Abstand nach oben */

}


.team-members {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4500;
    object-position:-0px top;


}

.team-member h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

.team-member p {
    font-size: 1rem;
    color: black;
}

.team-member a {
    font-size: 1rem;
    color: black; /* KrÃ¤ftiges rot */
    text-decoration: none;
}

.team-member a:hover {
    text-decoration: underline;
}

.team-intro {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: black;
    text-align: center;
    margin-bottom: 40px;
}


/* Zusatztext unter dem Team */
.additional-info {
    padding: 40px 20px;
    text-align: center;
    background: none;
    margin-top: 20px;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
}

.additional-info p {
    font-size: 1.2rem;
    color: black;
}

/* Kontaktformular transparent */
.contact-form-section {
    padding: 40px 20px;
    text-align: center;
    background: none;
    margin-top: 20px;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form button {
    width: 100%;
    box-sizing: border-box; /* WICHTIG */
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff4500;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.contact-form button:hover {
    background-color: #e03e00;
}

/* Impressum &amp; Datenschutz Links */
.footer a {
    color: black;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: red;
}

.impressum-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.impressum-content h1 {
    text-align: center;
}

.impressum-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}


.datenschutz-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.datenschutz-content h1 {
    text-align: center;
}

.datenschutz-content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.datenschutz-content ul {
    list-style: disc;
    margin-left: 20px;
}



/* Responsive */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 10px 15px;
    }

    .logo {
        height: 60px;
    }

    .nav-links {
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .product-wrapper {
        flex-direction: column;
        align-items: center;
    }

     .gif-section {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }



.icon-list {
        max-width: 100%;
        text-align: left;
        padding: 0 20px; /* Sorgt fÃ¼r etwas Abstand zum Rand */
    }

    .icon-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px; /* Abstand zwischen Icon und Text */
        font-size: 1rem; /* Kleinere Schrift fÃ¼r bessere Lesbarkeit */
        margin-bottom: 15px; /* Weniger Abstand zwischen den Zeilen */
    }

    .icon-item i {
        font-size: 1.5rem; /* Verkleinere das Icon auf MobilgerÃ¤ten */
        width: 30px; /* Fixierte Breite fÃ¼r gleichmÃ¤ÃŸige Ausrichtung */
        text-align: center;
    }

    .icon-item span {
        flex-grow: 1;
        text-align: left;
        line-height: 1.4;
    }
}
    

    .main-title {
        font-size: 2rem;
        margin-left: 20px;
        margin-top: 150px;
    }

  

@media (max-width: 768px) {
    .image-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .content-image {
        max-width: 90%;
        height: auto;
        position: relative;
    }

  .team-members {
        flex-direction: column;
    }
}






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