.elementor-1018 .elementor-element.elementor-element-e0ab198{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d78c00f */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .wizard-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'Arial', sans-serif;
            background: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .wizard-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .wizard-header h2 {
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .wizard-header p {
            color: #6c757d;
            font-size: 16px;
        }

        .step {
            display: none;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .step.active {
            display: block;
            animation: fadeIn 0.3s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step h3 {
            color: #2c3e50;
            font-size: 24px;
            margin-bottom: 20px;
            text-align: center;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .option-button {
            background: linear-gradient(135deg, #0e0090 0%, #2babe2 100%);
            color: white;
            border: none;
            padding: 20px 25px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .option-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(14, 0, 144, 0.4);
        }

        .option-button:active {
            transform: translateY(0);
        }

        .option-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .option-button:hover::before {
            left: 100%;
        }

        .back-button {
            background: #6c757d;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .back-button:hover {
            background: #5a6268;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: #e9ecef;
            border-radius: 3px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #0e0090, #2babe2);
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 0%;
        }

        .step-indicator {
            text-align: center;
            margin-bottom: 20px;
            color: #6c757d;
            font-size: 14px;
        }

        .final-step {
            text-align: center;
        }

        .final-step h3 {
            color: #28a745;
            margin-bottom: 15px;
        }

        .final-step p {
            color: #6c757d;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .checkout-button {
            background: linear-gradient(135deg, #0e0090 0%, #2babe2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkout-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(14, 0, 144, 0.4);
        }

        @media (max-width: 768px) {
            .wizard-container {
                padding: 15px;
                margin: 10px;
            }

            .step {
                padding: 20px;
            }

            .wizard-header h2 {
                font-size: 24px;
            }

            .option-button {
                padding: 18px 20px;
                font-size: 16px;
            }
        }/* End custom CSS */