        .STbyben-process-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .STbyben-process-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 20px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .STbyben-process-container {
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 40px;
        }
        
        .STbyben-process-h2 {
            text-align: center;
            color: #333;
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .STbyben-process-subtitle {
            text-align: center;
            color: #666;
            font-size: 16px;
            margin-bottom: 50px;
        }
        
        .STbyben-timeline {
            position: relative;
            padding: 20px 0;
        }
        
        .STbyben-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            transform: translateX(-50%);
        }
        
        .STbyben-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
            animation: STbybenSlideIn 0.6s ease-out forwards;
            opacity: 0;
        }
        
        .STbyben-step:nth-child(1) { animation-delay: 0.1s; }
        .STbyben-step:nth-child(2) { animation-delay: 0.2s; }
        .STbyben-step:nth-child(3) { animation-delay: 0.3s; }
        .STbyben-step:nth-child(4) { animation-delay: 0.4s; }
        .STbyben-step:nth-child(5) { animation-delay: 0.5s; }
        .STbyben-step:nth-child(6) { animation-delay: 0.6s; }
        .STbyben-step:nth-child(7) { animation-delay: 0.7s; }
        .STbyben-step:nth-child(8) { animation-delay: 0.8s; }
        
        @keyframes STbybenSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .STbyben-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .STbyben-step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            z-index: 2;
        }
        
        .STbyben-step-content {
            width: calc(50% - 50px);
            padding: 25px;
            background: #f8f9ff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .STbyben-step-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .STbyben-step:nth-child(odd) .STbyben-step-content {
            margin-right: auto;
        }
        
        .STbyben-step:nth-child(even) .STbyben-step-content {
            margin-left: auto;
        }
        
        .STbyben-step-title {
            color: #667eea;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .STbyben-step-icon {
            font-size: 24px;
        }
        
        .STbyben-step-description {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .STbyben-step-duration {
            display: inline-block;
            background: #e5e7ff;
            color: #667eea;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
        }
        
        .STbyben-step-warning {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 10px;
            margin-top: 10px;
            border-radius: 5px;
            font-size: 13px;
            color: #856404;
        }
        
        .STbyben-final-note {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
        
        .STbyben-final-note h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .STbyben-final-note p {
            font-size: 16px;
            opacity: 0.95;
        }
        
        @media (max-width: 768px) {
            .STbyben-timeline::before {
                left: 40px;
            }
            
            .STbyben-step {
                flex-direction: column !important;
                align-items: flex-start;
                padding-left: 80px;
            }
            
            .STbyben-step-number {
                left: 40px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            
            .STbyben-step-content {
                width: 100%;
                margin: 20px 0 !important;
            }
            
            .STbyben-step:nth-child(even) {
                flex-direction: column !important;
            }
        }