/* Neue Styles für die Kacheln und die Pfeilnavigation */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-card {
    background-color: #f0f8ff;
    /* Hellerer Blauton für den Hintergrund */
    border: 2px solid #4a90e2;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card h4 {
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.step-card p {
    margin-bottom: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

.arrow-right {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 2em;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        margin-bottom: 15px;
    }

    .arrow-right {
        display: none;
    }
}