body {
    font-family: Arial, sans-serif;
}

.timeline {
   width: 100%;
    margin: auto;
    padding: 20px;
    /* background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 38px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 34px;
    width: 2px;
    height: 100%;
    background: #12d2bf;
}

.timeline-item:last-child::before {
    display: none;
}

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    z-index: 10;
    background: #95a5a6;
}

.completed .icon {
    background: #2ecc71;
}

.pending .icon {
    background: #95a5a6;
}

.icon img.step-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text h3 {
    margin: 0;
    font-size: 16px;
}

.text p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}
