.footer-container {
    background-color: var(--rib-blue);
    color: var(--white);
    font-family: Roboto, sans-serif;
    font-weight: 400;
    padding: 20px 15px;
}

.footer-container a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container a:hover {
    color: #d1e7ff;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-logo {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 115px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    color: var(--white) !important;
}

.footer-information {
    flex: 1 1 70%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 30%;
    min-width: 200px;
}

.footer-column p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--white) !important;
}

.footer-column a {
    font-weight: 500;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social-link img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    font-size: 12px;
    justify-content: flex-end; /* Rechtsbündig */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    footer p {
        color: var(--white) !important;
    }

    .footer-logo {
        align-items: flex-start;
    }

    .footer-information {
        flex: 1 1 100%;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start; /* Zentriert für Mobile */
        gap: 10px;
    }

    .footer-legal-menu {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 60px;
    }

    footer p {
        color: var(--white) !important;
    }

    .footer-column p {
        font-size: 12px;
        color: var(--white) !important;
    }

    .footer-legal-menu {
        font-size: 10px;
    }

    .footer-social-link img {
        width: 25px;
        height: 25px;
    }
}
