@media (max-width: 1204px) {
    /* Hide Desktop SVG */
    .svg-wrapper { 
        display: none !important; 
    }

    /* Show Mobile Progress Line */
    .mobile-progress-container {
        display: block;
        position: absolute;
        top: 0;
        left: 20px;
        width: 3px;
        height: 100%;
        background: rgba(11, 94, 215, 0.15);
        z-index: 0;
        border-radius: 3px;
    }

    .mobile-progress-fill {
        width: 100%;
        background: #0B5ED7;
        height: 0%;
        border-radius: 3px;
        transition: height 0.1s linear;
        box-shadow: 0 0 10px rgba(11, 94, 215, 0.4);
    }

    /* Step Items Layout */
    .step-item {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left;
        margin-bottom: 60px;
        padding-left: 50px; /* Space for the line */
        position: relative;
        justify-content: flex-start !important;
    }

    /* Mobile Dots */
    .step-item::before {
        content: '';
        position: absolute;
        left: 13px; /* Center on the 3px line at left:20px */
        top: 5px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #dbeafe;
        z-index: 2;
        transition: all 0.3s ease;
        border: 2px solid #fff;
    }

    .step-item.active::before {
        background: #0B5ED7;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(11, 94, 215, 0.6);
    }

    .content {
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .desc {
        font-size: 1rem;
    }
}
