.tl-85ebdb9b-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

.tl-85ebdb9b-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: #e2e8f0;
    border-radius: 4px;
    z-index: 1;
}

.tl-85ebdb9b-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #3b82f6;
    border-radius: 4px;
    transition: height 0.1s ease-out;
    z-index: 2;
}

.tl-85ebdb9b-items {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.tl-85ebdb9b-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tl-85ebdb9b-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tl-85ebdb9b-content,
.tl-85ebdb9b-spacer {
    flex: 1;
    width: 50%;
}

.tl-85ebdb9b-content {
    padding: 0 40px;
    text-align: right;
    opacity: 0.5;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tl-85ebdb9b-item:nth-child(even) .tl-85ebdb9b-content {
    text-align: left;
}

.tl-85ebdb9b-icon-wrap {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 3px solid #94a3b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #94a3b8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.tl-85ebdb9b-icon-wrap svg {
    width: 24px;
    height: 24px;
    fill: #94a3b8;
    transition: fill 0.4s ease;
}

.tl-85ebdb9b-title {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.tl-85ebdb9b-desc {
    margin: 0;
    line-height: 1.6;
}

/* Active State Styles */
.tl-85ebdb9b-item.is-active .tl-85ebdb9b-content {
    opacity: 1;
    transform: translateY(0);
}

.tl-85ebdb9b-item.is-active .tl-85ebdb9b-icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .tl-85ebdb9b-line {
        left: 30px;
    }
    
    .tl-85ebdb9b-item,
    .tl-85ebdb9b-item:nth-child(even) {
        flex-direction: row;
    }
    
    .tl-85ebdb9b-spacer {
        display: none;
    }
    
    .tl-85ebdb9b-content,
    .tl-85ebdb9b-item:nth-child(even) .tl-85ebdb9b-content {
        flex: 1;
        text-align: left;
        padding: 0 0 0 30px;
    }
    
    .tl-85ebdb9b-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-left: 5px;
    }
}
