.leitfaden-banner {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: max-content;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.leitfaden-banner-content {
    max-width: 800px;
    color: white;
    z-index: 2;
}

.leitfaden-banner p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Farbige Tönung statt Schwarz */
.leitfaden-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(156, 136, 166, 0.726); /* 0.4 = 40% Deckkraft, kannst du anpassen */
    z-index: 1;
}
