/* --- RAHEBERG PROZESS TIMELINE STYLES --- */

.ra-process-timeline {
    max-width: 1000px;
    margin: 40px auto; 
    padding: 0 20px;
}

.ra-process-timeline h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2b6a67; /* Dunkelgrün/Ihre Akzentfarbe */
    font-size: 2em; /* Für mehr Dominanz */
}

.ra-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative; 
    padding-left: 30px; 
    position: relative;
}


.ra-process-step:before{
    height:100%;
    height:calc(100% + 50px);
    width:2px;
    position: absolute;
    left:0;
    top:0;
    background-color: #ddd;
    content:"";
}

.ra-process-step.last:before{
    height:100%;
}

/* Entfernen der Linie unter dem letzten Schritt */
.ra-process-step:last-child {
    border-left: none; 
    margin-bottom: 0;
}

/* Styling der Nummerierungs-Kreise (Icons) */
.ra-step-icon {
    position: absolute;
    left: -12px;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #2b6a67; 
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

/* Inhaltstexte */
.ra-step-content {
    flex-grow: 1;
    background-color: #f7f3ed; /* Ihre Beige-Hintergrundfarbe */
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: -5px; 
}

.ra-step-content h3 {
    color: #2b6a67;
    margin-top: 0;
    font-size: 1.25em;
}

/* Anpassung für Mobilgeräte (Responsive) */
@media (max-width: 768px) {
    .ra-process-timeline {
        padding: 0 10px;
    }
    .ra-step-content {
        padding: 10px 15px;
    }
    .ra-process-timeline h2 {
        font-size: 1.5em;
    }
}