<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Open+Sans&amp;display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f4f4f4;
}

.header {
    background-color: #003366; /* Dunkelblau */
    color: white;
    display: flex;
    justify-content: center; /* Zentriert den Inhalt horizontal */
    align-items: center; /* Zentriert den Inhalt vertikal */
    padding: 10px 20px;
}

.header-inner {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-width: 150px; /* Angepasste Logo-GrÃ¶ÃŸe */
    height: auto;
    margin-right: 20px; /* Abstand zwischen Logo und Navigation */
	background-color: #FFFFFF;
	border-radius: 6px
}

nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0099CC;
}



.page-banner {
    width: 100%;
    height: 300px;
    background: url('path-to-your-banner-image.jpg') no-repeat center center/cover;
}

main {
    padding: 20px;
    text-align: center;
	align-items: center;
}
/*.hero {
    background:  no-repeat center center/cover;
	max-width: 800px;
	margin: auto;
    padding: 60px 20px;
    text-align: center;
    color: black;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
.hero {
    max-width: 800px;
    margin: auto;
	text-align: center;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hero h1 {
	text-align: center;
    color: #003366;
	margin-bottom: 20px;
}
.hero h2 {
	text-align: justify;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
}
.hero h3 {
	text-align: center;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
}
.hero p, .hero ul {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 15px;
}
.hero h4 {
    text-align: center;
	font-weight: normal;
    line-height: 1.6;
    margin-bottom: 15px;
}
/* Stil fÃ¼r den Kontaktformular-Container */
.contact-container {
    max-width: 600px; /* oder eine Breite nach Ihrer Wahl */
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Stil fÃ¼r das Kontaktformular */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%; /* Volle Breite innerhalb des contact-container */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: #002244;
}
.content-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.content-container h1 {
	text-align: center;
    color: #003366;
	text-align: center;
    margin-bottom: 20px;
}
.content-container h4 {
	text-align: justify;
	color: #003366;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content-container h2 {
	text-align: center;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
}
.content-container h3 {
	text-align: center;
	color: black;
    line-height: 1.6;
    margin-bottom: 15px;
}


.content-container p, .content-container ul {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-container a {
    color: #0066cc;
    text-decoration: none;
}

.content-container a:hover {
    text-decoration: underline;
}

.content-container ul {
    padding-left: 20px;
}

.content-container li {
    margin-bottom: 10px;
}

.project {
    margin-bottom: 30px;
}

.project h3 {
    color: #003366;
}

.project img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}
.project-image {
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.project-image:hover {
    transform: scale(1.5); /* VergrÃ¶ÃŸert das Bild um 10% */
}
@keyframes slide {
    /*from {
        margin-left: -40%;
    }
    to {
        margin-left: 40%;
    }*/
	0%, 100% {
        margin-left: -40%;
    }
    50% {
        margin-left: 40%;
    }
}

.sliding-text {
    display: block;
    width: 100%;
    height: 100px;
    line-height: 50px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    animation: slide 7s linear infinite;
}

.consent-checkbox {
    margin: 20px 0;
}

.consent-checkbox label {
    font-size: 0.9rem;
}

.consent-checkbox input[type="checkbox"] {
    margin-right: 10px;
}

footer {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: white;
}

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

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }
}
/* Cookiei */
#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f4f4;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

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