
        .subtitle {
            text-align: center;
            color: #4a5568;
            font-size: 1.2em;
            margin-bottom: 60px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .step-box {
            background: white;
            border-radius: 10px;
            padding: 20px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: 2px solid transparent;
        }

        .step-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .step-box:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        /* Unique colors for each step */
        .step-box:nth-child(1) { border-color: #FF6B6B; }
        .step-box:nth-child(1) .step-number { background: linear-gradient(135deg, #FF6B6B, #EE5A6F); }
        .step-box:nth-child(1) .step-icon { background: linear-gradient(135deg, #FFE5E5, #FFD0D0); }
        .step-box:nth-child(1) .step-icon i { color: #FF6B6B; }

        .step-box:nth-child(2) { border-color: #4ECDC4; }
        .step-box:nth-child(2) .step-number { background: linear-gradient(135deg, #4ECDC4, #44A9A3); }
        .step-box:nth-child(2) .step-icon { background: linear-gradient(135deg, #E0F7F6, #C9F0ED); }
        .step-box:nth-child(2) .step-icon i { color: #4ECDC4; }

        .step-box:nth-child(3) { border-color: #FFD93D; }
        .step-box:nth-child(3) .step-number { background: linear-gradient(135deg, #FFD93D, #F5C842); }
        .step-box:nth-child(3) .step-icon { background: linear-gradient(135deg, #FFF9E5, #FFF3CC); }
        .step-box:nth-child(3) .step-icon i { color: #FFD93D; }

        .step-box:nth-child(4) { border-color: #6BCF7F; }
        .step-box:nth-child(4) .step-number { background: linear-gradient(135deg, #6BCF7F, #5ABD6D); }
        .step-box:nth-child(4) .step-icon { background: linear-gradient(135deg, #E8F8EB, #D4F1D8); }
        .step-box:nth-child(4) .step-icon i { color: #6BCF7F; }

        .step-box:nth-child(5) { border-color: #A78BFA; }
        .step-box:nth-child(5) .step-number { background: linear-gradient(135deg, #A78BFA, #9370E8); }
        .step-box:nth-child(5) .step-icon { background: linear-gradient(135deg, #F3EFFF, #E8DEFF); }
        .step-box:nth-child(5) .step-icon i { color: #A78BFA; }

        .step-box:nth-child(6) { border-color: #FB7185; }
        .step-box:nth-child(6) .step-number { background: linear-gradient(135deg, #FB7185, #E85A6F); }
        .step-box:nth-child(6) .step-icon { background: linear-gradient(135deg, #FFE9EC, #FFD4D9); }
        .step-box:nth-child(6) .step-icon i { color: #FB7185; }

        .step-box:nth-child(7) { border-color: #60A5FA; }
        .step-box:nth-child(7) .step-number { background: linear-gradient(135deg, #60A5FA, #4F92E6); }
        .step-box:nth-child(7) .step-icon { background: linear-gradient(135deg, #E5F2FF, #CCE5FF); }
        .step-box:nth-child(7) .step-icon i { color: #60A5FA; }

        .step-box:nth-child(8) { border-color: #F59E0B; }
        .step-box:nth-child(8) .step-number { background: linear-gradient(135deg, #F59E0B, #D97706); }
        .step-box:nth-child(8) .step-icon { background: linear-gradient(135deg, #FFF3E0, #FFE8C2); }
        .step-box:nth-child(8) .step-icon i { color: #F59E0B; }

        .step-box:nth-child(9) { border-color: #10B981; }
        .step-box:nth-child(9) .step-number { background: linear-gradient(135deg, #10B981, #059669); }
        .step-box:nth-child(9) .step-icon { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
        .step-box:nth-child(9) .step-icon i { color: #10B981; }

        .step-number {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 55px;
            height: 55px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6em;
            font-weight: bold;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }

        .step-box:hover .step-number {
            transform: rotate(360deg) scale(1.1);
        }

        .step-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .step-box:hover .step-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .step-icon i {
            font-size: 2.0em;
        }

        .step-title {
            font-size: 18px;
            color: #2d3748;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .step-description {
            color: #718096;
            line-height: 1.6;
            font-size: 0.95em;
        }

        /* Vector decorative elements */
        .vector-decoration {
            position: fixed;
            pointer-events: none;
            opacity: 0.1;
            z-index: 0;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            top: -100px;
            right: -100px;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
            bottom: -50px;
            left: -50px;
        }

        @media (max-width: 1024px) {
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .steps-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2em;
            }

            .subtitle {
                font-size: 1em;
            }
        }

        .cta-section {
            text-align: center;
            margin-top: 30px;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        /* Progress connector lines */
        .step-box::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #cbd5e0);
            top: 50%;
            right: -35px;
            opacity: 0.5;
        }

        .step-box:nth-child(3n)::after,
        .step-box:nth-child(9)::after {
            display: none;
        }
  