<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">root {
    --primary-blue: #0056b3;
    --text-black: #333;
}
body {
    color: var(--text-black);
}
.bg-primary-blue {
    background-color: var(--primary-blue);
}
.text-primary-blue {
    color: var(--primary-blue);
}
.hero-section {
    background-size: cover;
    background-position: center;
    height: 500px;
}
.service-card {
    transition: transform 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-blue);
}

.navbar-brand:hover {
    text-decoration: none;
}

#cookie-banner {
    display: none; /* Initial unsichtbar, wird durch JavaScript sichtbar gemacht */
    position: fixed; /* Fixiert am Bildschirm */
    bottom: 0.1px; /* Abstand vom unteren Rand */
    left: 0; /* Am linken Rand ausgerichtet */
    width: 100%; /* Ãœber die gesamte Breite */
    background: #f7f7f7; /* Heller Hintergrund */
    padding: 15px; /* Innenabstand */
    text-align: center; /* Zentrierter Text */
    border-top: 1px solid #ccc; /* Oberer Rand */
    z-index: 9999; /* Ãœber allen anderen Elementen */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

#cookie-banner p {
    margin: 0; /* Kein zusÃ¤tzlicher Abstand */
    color: #333; /* Textfarbe */
}

#cookie-banner button {
    margin: 0 5px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 14px;
}

#cookie-banner button:hover {
    background-color: #0056b3; /* Hover-Farbe */
}

@media (max-width: 375px) {
    .hero-section {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .service-card .card-title {
        font-size: 1.25rem;
    }

    .service-card .card-text {
        font-size: 1rem;
    }

    .text-primary-blue {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer {
        text-align: center;
    }

    h2 {
        font-size: 1.5rem;
    }
}</pre></body></html>