.sp-994218-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-994218-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.sp-994218-item:hover {
    transform: translateX(5px);
}

.sp-994218-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-994218-number {
    width: 48px;
    height: 48px;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
}

.sp-994218-number svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

.sp-994218-line {
    width: 2px;
    background-color: #e0e0e0;
    flex-grow: 1;
    min-height: 50px;
    margin: 8px 0;
}

.sp-994218-content {
    padding-bottom: 40px;
    flex: 1;
}

.sp-994218-item:last-child .sp-994218-content {
    padding-bottom: 0;
}

.sp-994218-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
}

.sp-994218-desc {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .sp-994218-item {
        gap: 16px;
    }
    
    .sp-994218-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .sp-994218-number svg {
        width: 16px;
        height: 16px;
    }
    
    .sp-994218-content {
        padding-bottom: 30px;
    }
}