﻿body {
    font-family: 'Rubik', sans-serif;
}

.full-width-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #e8eff2; /* Leichter Hintergrund */
    padding: 20px;
    box-sizing: border-box;
}

.text-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px; /* Abstand zwischen Text und Bild */
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.text-content {
    flex: 2; /* Text nimmt mehr Platz ein */
}

    .text-content p {
        margin: 0 0 10px;
        font-size: 1.5rem;
    }

        .text-content p strong {
            font-size: 2rem;
            color: #000;
        }

.text-image {
    flex: 1; /* Bild nimmt weniger Platz ein */
}

    .text-image img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px; /* Optional: abgerundete Ecken */
    }

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f4f7; /* Leichter Hintergrund für das Bild */
}

    .image-container img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }


.color-banner {
    background-color: #b1c7e2; /* Leichter Hintergrund */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.color-banner-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: black;
    font-size: 2.5rem;
    margin: 0;
}

.gridCard-headline {
    font-size: 3.5rem;
    font-weight: bold;
    color: #0d084b;
    text-align: center;
}
.gridCard-subheadline {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
    text-align: center;
}

.pictogram {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.benefits-list li {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.arrow-row {
    display: flex;
    align-items: center; /* Vertikale Zentrierung der Inhalte */
    height: 200px;
    font-size: 1.3rem;
}

.arrow-col {
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; /* Vertikale Zentrierung */
    height: 100%;
}

.scroll-image {
    width: 200px;
    height: 200px;
    opacity: 0; /* Unsichtbar, bis die Animation startet */
    transform: translateX(100px); /* Startposition: außerhalb des Viewports */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Animationseffekte */
}

.scroll-image.visible {
    opacity: 1; /* Sichtbar */
    transform: translateX(0); /* Endposition: im Viewport */
}


