.main-footer {
    background-color: #1f293e;
    color: #ffffff;
    padding: 80px 0 30px 0;
    margin-top: 100px; /* Schöner Abstand zum Content */
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

.footer-grid {
    display: grid;
    /* 2 Teile für Brand, je 1 Teil für die Menüs */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 50px;
}

.footer-col h4 {
    margin-bottom: 25px;
    margin-top: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 100px;
}

.footer-logo {
    background-color: white;
    width: fit-content;
    padding: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px; /* Kleiner Effekt beim Hover */
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* MOBILE RETTUNG */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 Spalten auf Tablets */
    }
    .brand-col {
        grid-column: span 2; /* Logo-Spalte geht über volle Breite */
        margin-bottom: 30px;
    }
    .footer-logo {
        margin: auto;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Alles untereinander auf Handys */
        text-align: center;
    }
    .brand-col {
        grid-column: span 1;
    }
}