.angie-timeline-wrapper-8913e290 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.angie-timeline-8913e290 {
    position: relative;
}

/* Vertical Line */
.angie-timeline-8913e290::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #e2e8f0;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.angie-timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.angie-timeline-item:last-child {
    margin-bottom: 0;
}

.angie-timeline-content {
    width: 45%;
    position: relative;
}

.angie-timeline-item.left {
    justify-content: flex-start;
}

.angie-timeline-item.right {
    justify-content: flex-end;
}

/* Icon Setup */
.angie-timeline-icon-wrap {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.angie-timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.angie-timeline-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.angie-timeline-item.left .angie-timeline-icon-wrap {
    right: -25px; /* Offset against right edge of the 45% block */
}

.angie-timeline-item.right .angie-timeline-icon-wrap {
    left: -25px; /* Offset against left edge of the 45% block */
}

/* Cards */
.angie-timeline-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05); /* Spread verwijderd */
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

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

.angie-timeline-item.left .angie-timeline-card {
    margin-right: 50px;
}

.angie-timeline-item.right .angie-timeline-card {
    margin-left: 50px;
}

.angie-timeline-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 700;
}

.angie-timeline-desc {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .angie-timeline-8913e290::before {
        left: 20px;
        transform: none;
    }
    
    .angie-timeline-content {
        width: 100%;
        padding-left: 60px;
    }
    
    .angie-timeline-item.left, .angie-timeline-item.right {
        justify-content: flex-start;
    }
    
    .angie-timeline-item.left .angie-timeline-icon-wrap,
    .angie-timeline-item.right .angie-timeline-icon-wrap {
        left: 0 !important;
        right: auto !important;
    }
    
    .angie-timeline-item.left .angie-timeline-card,
    .angie-timeline-item.right .angie-timeline-card {
        margin: 0 !important;
    }
}