.steps-container {
    position: relative;
    width: 100%;
    width:100%;
    margin: 0 auto;
}

.steps-container .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.steps-container .step:last-child {
    margin-bottom: 0;
}

.steps-container .step .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px; 
    color: #fff;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.steps-container .step .icon img {
    width: 44px;
height: 44px;
    object-fit: contain;
}

.steps-container .step .details {
    flex: 1;
}

.steps-container .step .step-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #333;
}

.steps-container .step .description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.steps-container .step .line {
   position: absolute;
    width: 2px;
    left: 37px;
    top: 75px;
    height: 85%;
    z-index: -1;
    border-left: 2px dashed #757575;
    
}

.steps-container .step:last-child .line {
    display: none;
}
