.tnvr-container-169c8e60 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
    padding: 20px 0;
}

.tnvr-container-169c8e60::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
    border-radius: 4px;
    display: none; /* Hide line on mobile */
}

@media (min-width: 768px) {
    .tnvr-container-169c8e60 {
        flex-wrap: nowrap;
    }
    .tnvr-container-169c8e60::before {
        display: block;
    }
}

.tnvr-step {
    flex: 1 1 200px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    border-top: 5px solid #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.tnvr-step.tnvr-animate {
    opacity: 1;
    transform: translateY(0);
}

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

.tnvr-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: -50px auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid #fff;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tnvr-icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.tnvr-step:hover .tnvr-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.tnvr-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.tnvr-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}
