
    /* Basis-Styling fÃƒÂ¼r den informativen Bereich */
    .info-section {
        padding: 3rem 0;
        background-color: #ffffff;
    }

    .info-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .info-header {
        margin-bottom: 2.5rem;
        border-bottom: 2px solid #f0f4f8;
        padding-bottom: 1rem;
    }

    .info-header h2 {
        font-size: 1.75rem;
        color: black;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .info-header p {
        color: #64748b;
        font-size: 1rem;
        max-width: 700px;
    }

    .info-content {
        margin-bottom: 3rem;
    }

    .info-block {
        margin-bottom: 2.5rem;
        position: relative;
    }

    .info-block:last-child {
        margin-bottom: 0;
    }

    .info-heading {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        position: relative;
    }

    .info-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        margin-right: 1rem;
        background-color: #f0f7ff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-icon svg {
        width: 18px;
        height: 18px;
        color: #1f4c83;
    }

    .info-icon-title {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        background-color: #f0f7ff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .info-icon-title svg {
        width: 30px;
        height: 30px;
        color: #1f4c83;
    }

    .info-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #334155;
        margin: 0;
        padding-top: 0.25rem;
    }

    .info-details {
        padding-left: calc(32px + 1rem);
        /* Align with title text */
        color: #475569;
        line-height: 1.6;
    }

    .info-details p {
        margin-bottom: 0.75rem;
    }

    .info-details p:last-child {
        margin-bottom: 0;
    }

    .info-callout {
        background-color: #f8fafc;
        border-left: 3px solid #1f4c83;
        padding: 1rem 1.25rem;
        margin: 1rem 0;
        border-radius: 0 4px 4px 0;
    }

    .info-callout p {
        margin: 0;
        color: #334155;
    }

    /* Divider Styling */
    .info-divider {
        height: 1px;
        background-color: #e2e8f0;
        margin: 2rem 0;
    }

    /* Responsive Anpassungen */
    @media (max-width: 768px) {
        .info-header h2 {
            font-size: 1.5rem;
        }

        .info-title {
            font-size: 1.125rem;
        }

        .info-details {
            padding-left: 0;
            margin-top: 0.75rem;
        }

        .info-heading {
            flex-direction: column;
            gap:var(--sp-xxs);
            text-align:center;
        }

        .info-icon {
            margin-bottom: 0.5rem;
        }
    }



/* Modernes Intro */
.intro-container {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff85 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #4279BC, #1f4c83);
    border-radius: 3px 0 0 3px;
}

.intro-title {
    color: #1f4c83;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.intro-title-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4279bc21;
    width: 36px;
    height: 36px;
    border-radius: 0.3em;
}

.intro-title-icon svg {
    width: 20px;
    height: 20px;
    fill: #1f4c83;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 280px;
    line-height: 1.7;
    color: #334155;
    font-size: 1.0625rem;
}

.intro-text p {
    margin: 0;
}

.intro-text strong {
    color: #1f4c83;
    font-weight: 600;
}

.intro-illustration {
    flex: 0 0 220px;
    position: relative;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.intro-illustration svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.intro-steps {
    display: flex;
    margin-top: 1.5rem;
    width: 100%;
    gap: 1.5rem;
}

.intro-step {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
}

.intro-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #94a3b8;
    border-right: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #1f4c83;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-icon {
    margin-bottom: 0.5rem;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: #475569;
}

.step-text {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

@media (max-width: 768px) {
    .intro-container {
        padding: 1.5rem;
    }

    .intro-illustration {
        flex: 1 1 100%;
        margin-top: 1rem;
        order: -1;
    }

    .intro-steps {
        flex-direction: column;
    }

    .intro-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -15px;
        transform: translateX(50%) rotate(135deg);
    }

        .info-icon-title {
        margin-right: 0rem;
    }
}








