
        :root {
            --primary-color: #4f46e5;
            --secondary-color: #818cf8;
            --success-color: #10b981;
            --background-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            background: #ffffff;
            min-height: 100vh;
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        .wizard-container {
            max-width: 80%;
            width: 95%;
            margin: 2rem auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .wizard-container {
                width: 98%;
                margin: 1rem auto;
                border-radius: 15px;
            }
        }

        .wizard-header {
            background: #f8f9fa;
            color: #212529;
            padding: 0px 0px 20px 0px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }

        .wizard-header h1 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            padding: 2rem 1rem 1rem;
            background: #ffffff;
            overflow-x: auto;
            white-space: nowrap;
            border-bottom: 1px solid #e5e7eb;
        }

        .step {
            display: flex;
            align-items: center;
            margin: 0 0.5rem;
            flex-shrink: 0;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 10%;
            background: #e5e7eb;
            color: #6b7280;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }

        .step.active .step-number {
            background: var(--primary-color);
            color: white;
        }

        .step.completed .step-number {
            background: var(--success-color);
            color: white;
        }

        .step-connector {
            width: 40px;
            height: 2px;
            background: #e5e7eb;
            margin: 0 0.5rem;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .step-connector {
                width: 20px;
                margin: 0 0.25rem;
            }

            .step-indicator {
                padding: 1.5rem 0.5rem 1rem;
            }

            .wizard-content {
                padding: 1.5rem;
            }
        }

        .step.completed .step-connector {
            background: var(--success-color);
        }

        .wizard-content {
            padding: 2rem;
            min-height: 500px;
            max-width: 100%;
            overflow-x: auto;
        }

        .step-content {
            display: none;
            max-width: 100%;
            margin: 0 auto;
        }

        .step-content.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-image {
            text-align: center;
            margin-bottom: 2rem;
        }

        .step-image i {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .form-label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .form-control,
        .form-select {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.15);
        }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            border-radius: 12px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover:not(:disabled) {
            background: #3730a3;
            transform: translateY(-2px);
        }

        .btn-primary:disabled {
            background: #9ca3af;
            cursor: not-allowed;
            transform: none;
        }

        .btn-secondary {
            background: #6b7280;
            border: none;
            border-radius: 12px;
            padding: 0.75rem 2rem;
            font-weight: 600;
        }

        .company-size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
            justify-content: center;
        }

        .size-option {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
        }

        .size-option:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .size-option.selected {
            border-color: var(--primary-color);
            background: rgba(79, 70, 229, 0.05);
        }

        .plan-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2rem 0;
            justify-content: center;
        }

        .plan-card {
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            flex: 1;
            min-width: 280px;
            max-width: 320px;
        }

        .plan-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .plan-card.selected {
            border-color: var(--primary-color);
            background: rgba(79, 70, 229, 0.05);
        }

        .plan-card.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .consent-text {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.5;
            margin-top: 1rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 8px;
        }

        .wizard-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 2rem;
            background: #ffffff;
            border-top: 1px solid #e5e7eb;
        }

        .credit-card-input {
            background: #f8fafc;
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1rem;
        }

        .card-preview {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            min-height: 200px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .card-number {
            font-family: 'Courier New', monospace;
            font-size: 1.5rem;
            letter-spacing: 0.2rem;
            margin: 2rem 0 1rem;
        }

        .card-holder {
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .card-expiry {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            font-family: 'Courier New', monospace;
        }

        .payment-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #e5e7eb;
        }

        .payment-section h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        /* Loading spinner animation */
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

.alert-message
{
    padding: 20px;
    border-left: 3px solid #eee;
}
.alert-message h4
{
    margin-top: 0;
    margin-bottom: 5px;
}
.alert-message p:last-child
{
    margin-bottom: 0;
}
.alert-message code
{
    background-color: #fff;
    border-radius: 3px;
}
.alert-message-success
{
    background-color: #F4FDF0;
    border-color: #3C763D;
}
.alert-message-success h4
{
    color: #3C763D;
}
.alert-message-danger
{
    background-color: #fdf7f7;
    border-color: #d9534f;
}
.alert-message-danger h4
{
    color: #d9534f;
}
.alert-message-warning
{
    background-color: #fcf8f2;
    border-color: #f0ad4e;
}
.alert-message-warning h4
{
    color: #f0ad4e;
}
.alert-message-info
{
    background-color: #f4f8fa;
    border-color: #5bc0de;
}
.alert-message-info h4
{
    color: #5bc0de;
}
.alert-message-default
{
    background-color: #EEE;
    border-color: #B4B4B4;
}
.alert-message-default h4
{
    color: #000;
}
.alert-message-notice
{
    background-color: #FCFCDD;
    border-color: #BDBD89;
}
.alert-message-notice h4
{
    color: #444;
}