        .step-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 40px;
        }

        .step {
            text-align: center;
            color: #1397ff;
            flex: 1;
            position: relative;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 100%;
            height: 4px;
            background-color: #1397ff;
            z-index: -1;
        }

        .step:not(:first-child)::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: #1397ff;
            z-index: -1;
        }

        .step i {
            font-size: 90px;
            margin-bottom: 20px;
            color: #1397ff;
        }

        .step .step-number {
            width: 50px;
            height: 50px;
            margin: 0 auto;
            background-color: #1397ff;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .step-title {
            font-size: 18px;
            font-weight: bold;
        }

        .step.active .step-number {
            background-color: #04528e;
        }

        @media (max-width: 768px) {
            .step i {
                font-size: 60px;
            }

            .step .step-number {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .step-title {
                font-size: 14px;
            }
        }