.timeline {
    position: relative;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0d6efd;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: #0d6efd;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.timeline-item p {
    margin: 0 0 5px;
    font-size: 0.95rem;
}

/* .timeline-item small { color: #6c757d; } */