body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #ffffff; /* Weißer Hintergrund */
    color: #333; /* Dunkelgrauer Text */
    background-image: url('bg.webp');
    background-size: cover;
    background-position: center;
}

header {
    background-color: #005b96; /* Blau, basierend auf dem Logo */
    color: white;
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;     

}

#header-content {
    display: flex;
    align-items: center;
}

#logo-container img {
    height: 85px; /* Passen Sie die Größe nach Bedarf an */
    margin-right: 15px; /* Abstand zwischen Logo und Text */
    margin-top: 0px
    margin-buttom: 0px
}


#intro-text {
    background-color: #f4f4f4; /* Leichter Hintergrund für Kontrast */
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Max. Breite des Textbereichs */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Tiefe */
    text-align: center;
}

#intro-text h2 {
    color: #005b96; /* Dunkelblau, passend zum Header */
    margin-bottom: 15px;
}

#intro-text p {
    color: #333; /* Dunkelgrauer Text für Lesbarkeit */
    line-height: 1.6;
}


main {
    margin: 20px;
}

#marketing-text {
    background: rgba(255, 255, 255, 0.8); /* Leicht transparenter weißer Hintergrund */
    padding: 20px;
    margin: 20px auto;
    max-width: 800px; /* Max. Breite des Textbereichs */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Tiefe */
}

#marketing-text h2 {
    color: #333;
    margin-bottom: 15px;
}

#marketing-text p {
    color: #666;
    line-height: 1.6;
}

#marketing-text strong {
    color: #333;
}

#cta {
    text-align: center;
    padding: 30px;
    background-color: #f4f4f4; /* Leichter Hintergrund für Kontrast */
    margin-top: 30px;
}

#cta h3 {
    color: #333;
    margin-bottom: 15px;
}

#cta p {
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #007bff; /* Auffällige Farbe */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3; /* Dunklere Farbe beim Hover */
}



footer {
    background-color: #005b96; /* Gleiche Farbe wie der Header */
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

footer nav a {
    color: white;
    text-decoration: none;
    padding: 0 10px;
}

footer nav a:hover {
    text-decoration: underline;
}
