.leistungen {
    margin: 0;
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================
   IMG BEREICH (DESKTOP)
   ===================== */

.leistungen-img {
    position: relative;
    width: 100%;
}

/* Bild */
.leistungen-img picture,
.leistungen-img img {
    display: block;
    width: 100%;
}

/* Desktop-Bild */
.leistungen-img img {
    height: auto;
}

/* Text über rechtem Bildbereich (nur Desktop) */
.leistungen-img-text {
    position: absolute;
    top: 50%;
    right: 0;
    width: 67%;
    transform: translateY(-50%);
    padding: 40px;
    background: rgba(0,0,0,0.45);
    color: #fff;
}

.leistungen h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.leistungen h2 {
    font-size: 24px;
    font-weight: 600;
}

.leistungen h3 {
    font-size: 20px;
    font-weight: 500;
}


/* =====================
   TEXT UNTER DEM BILD
   ===================== */

.leistungen-text {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: left;
}

/* =====================
   MOBILE ANPASSUNG
   ===================== */

@media (max-width: 768px) {

    /* Text NICHT auf dem Bild */
    .leistungen-img-text {
        position: static;
        transform: none;
        width: 100%;
        background: var(--color-light);
        border-bottom: 1px solid var(--color-border);
        color: #000;
        padding: 20px;
        text-align: center;
    }

}