footer {
    background-color: #7a0b0b;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 2rem;
}

/* oberer Bereich */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-left img {
    width: 45px;
    height: auto;
}

.footer-left strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-contact p {
    margin: 0;
}

/* unterer Bereich */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.7);
    text-align: center;
    padding: 1rem 0;
    font-size: 0.95rem;
    color: white;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.25rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* responsive */
@media (max-width: 800px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }
}