footer.footer {
    background-color: #fafafa; /* oder lila, schwarz, weiß – wie dein Corporate Design */
    margin-top: 1rem;
    border-top: 1px solid #ccc;
    width: 98%;
    margin-left: 1rem;
    margin-right: 1rem
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* macht den Footer responsiv */
}

.footer-column h4 {
    color: #444;
}

.footer-column a {
    color: #333;
    text-decoration: none;
}

.footer-column a:hover {
    color: #FF914D; /* Akzentfarbe deiner Seite */
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
