/* Grunddesign Impressum */
.impressum-section {
    background: #f5f7fa;
    padding: 4rem 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-title {
    color: #044C7E;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.impressum-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
     position: relative;
}

.impressum-card h2 {
    color: #044C7E;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.impressum-card p {
    color: #333333;
    line-height: 1.6;
}

.impressum-card a {
    color: #044C7E;
    text-decoration: underline;
}

.impressum-card a:hover {
    text-decoration: none;
}

.quelle {
    font-size: 0.9rem;
    color: #555555;
}


.fixed-image {
    position: fixed;
    /* bleibt auch beim Scrollen unten links */
    bottom: 5%;
    left: 1.5%;
    z-index: 9999;
    /* liegt über allen anderen Elementen */
}

.fixed-image img {
    width: 60px;
    /* Icon-Größe */
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.fixed-image img:hover {
    transform: scale(1.1);
    /* Hover-Effekt */
}
