.td-steps {
    padding: 40px 0;
}

.td-step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.td-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.td-step-visual {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-step-visual .line {
    width: 80px;
    height: 80px;
    background: url('../img/icons/line-icon.svg') no-repeat center;
    background-size: contain;
}

.td-step-visual .transition {
    width: 80px;
    height: 80px;
    background: url('../img/icons/transition-icon.svg') no-repeat center;
    background-size: contain;
}

.td-step-visual .cards {
    width: 80px;
    height: 80px;
    background: url('../img/icons/cards-icon.svg') no-repeat center;
    background-size: contain;
}

.td-step-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2D2D2D;
    line-height: 1.3;
}

.td-step-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}