.timeline-list-f6e998a4 {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.timeline-item-f6e998a4 {
    display: flex;
    position: relative;
    gap: 24px;
    padding-bottom: 40px; 
}

/* Remove bottom padding on last item */
.timeline-item-f6e998a4:last-child {
    padding-bottom: 0;
}

/* Connecting line logic - attached to item::before */
.timeline-item-f6e998a4::before {
    content: '';
    position: absolute;
    top: 0;
    z-index: 0;
}

/* Hide last line if setting is enabled */
.timeline-list-f6e998a4.hide-last-line .timeline-item-f6e998a4:last-child::before {
    display: none;
}

.timeline-icon-wrapper-f6e998a4 {
    position: relative;
    z-index: 1; /* Keep above line */
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); 
}

.timeline-icon-f6e998a4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content-f6e998a4 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-subtitle-f6e998a4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.timeline-title-f6e998a4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}