/* ========== Footer ========== */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 20px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: flex-start;
    position: relative;
}

/* Gleiche vertikale Ausrichtung */
.footer-container > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}


/* Gemeinsames Styling für Überschriften */
.footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 60px;
    background-color: white;
    opacity: 0.6;
}

.footer p,
.footer li,
.footer a {
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Vertikale Linie links bei Leistungen */
.footer .leistungs-liste {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 5rem;
    margin-left: 0.25rem;
}

/* Trennlinie vor Logo */
.footer .footer-logo-wrapper {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-wrapper img {
    max-height: 200px;
    height: auto;
    width: auto;
}

/* ========== Copyright-Bereich ========== */
.copyright-section {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    height: 60px; /* gewünschte Höhe */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-container {
        text-align: center;
        gap: 2rem;
    }

    .footer .footer-logo-wrapper {
        border-left: none;
        padding-left: 0;
        justify-content: center;
    }

    .footer .leistungs-liste {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
    }
}