/* --- START OF FILE footer_style.css --- */

/* Footer Styles */
/* --- START OF FILE footer_style.css --- */

/* Footer Styles */
.main-footer {
    background-color: #343a40;
    color: white;
    padding: 40px 50px;
    overflow-x: hidden; /* <-- DIESE ZEILE HINZUFÜGEN */
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff; /* Leicht hellere Farbe für bessere Lesbarkeit */
}

.footer-column p {
    color: #adb5bd; /* Etwas gedämpftere Farbe für Beschreibungstexte */
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    color: #adb5bd;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-column ul li a:hover {
    color: #ffffff; /* Heller bei Hover */
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #495057;
    padding-top: 20px;
    font-size: 0.9em;
    color: #adb5bd;
}

/* Media Queries for Responsive Footer */
@media (max-width: 768px) {
    /* HINZUGEFÜGT: Korrigiert den Overflow des Footers auf Mobilgeräten */
    .main-footer {
        padding: 40px 20px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        flex-basis: auto;
        width: 100%;
        text-align: center; /* Zentriert den Inhalt auf Mobilgeräten */
    }
}