
    .hero.hero-bg-image{
        padding: 35px 0 0 !important;
    }
    
    /* Add spacing between form and footer */
    .pro-wizard-hero {
        padding-bottom: 40px !important;
        margin-bottom: 20px !important;
        min-height: auto !important;
    }
    
    /* Custom CSS to replace Bootstrap classes */
    /* Container */
    .bw-wizard.container {
        max-width: 860px;
        margin: 40px auto 40px auto !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    /* Ensure hero section doesn't stick to footer */
    .pro-wizard-hero::after {
        content: '';
        display: block;
        height: 40px;
        width: 100%;
    }
    
    /* Form Group - replaces .form-group */
    .bw-wizard .form-group {
        margin-bottom: 1rem;
        display: block;
    }
    /* Two-column layout for form fields */
    .bw-wizard .form-row-two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    /* Remove bottom margin from form-group inside form-row-two */
    .bw-wizard .form-row-two .form-group {
        margin-bottom: 0;
    }
    
    /* Responsive: stack on smaller screens */
    @media (max-width: 768px) {
        .bw-wizard .form-row-two {
            grid-template-columns: 1fr;
            gap: 0rem;
        }
    }
    
    /* Margin utilities - replaces Bootstrap mb-3, mb-4, mt-2, mt-3 */
    .bw-wizard .mb-3 {
        margin-bottom: 1rem !important;
    }
    .bw-wizard .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    .bw-wizard .mt-2 {
        /* margin-top: 0.5rem !important; */
    }
    .bw-wizard .mt-3 {
        margin-top: 1rem !important;
    }
    
    /* Form Control - replaces .form-control */
    .bw-wizard .form-control {
        display: block;
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        line-height: 1.5;
        color: #212529;
        background-color: #fff4f8;
        border-radius: 2px;
        box-sizing: border-box;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    .bw-wizard .form-control:focus {
        outline: 0;
        border-color: #111;
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
    }
    
    /* Placeholder font to match theme */
    .bw-wizard .form-control::placeholder {
        color: #6c757d;
        opacity: 1;
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Browser-specific placeholder styles */
    .bw-wizard .form-control::-webkit-input-placeholder {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .bw-wizard .form-control::-moz-placeholder {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .bw-wizard .form-control:-ms-input-placeholder {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    .bw-wizard .form-control::-ms-input-placeholder {
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Form Check - replaces .form-check */
    .bw-wizard .form-check {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0;
    }
    
    /* Form Check Input - replaces .form-check-input */
    .bw-wizard .form-check-input {
        width: 18px;
        height: 18px;
        margin: 0;
        vertical-align: middle;
        appearance: none;
        background-color: #fff;
        border: 1px solid #d6d6d6;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
    }
    
    .bw-wizard .form-check-input:checked {
        background-color: #111;
        border-color: #111;
    }
    
    .bw-wizard .form-check-input:checked::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 5px;
        width: 4px;
        height: 8px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    /* Form Check Label - replaces .form-check-label */
    .bw-wizard .form-check-label {
        margin: 0;
        line-height: 1.2;
        cursor: pointer;
        color: rgba(118, 33, 62, 1);
    }
    
    /* Wizard Checkbox container - similar to wizard-radio */
    .bw-wizard .wizard-checkbox {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bw-wizard .wizard-checkbox label {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: rgba(118, 33, 62, 1);
        font-weight: 500;
        cursor: pointer;
        gap: 8px;
    }
    
    .bw-wizard .wizard-checkbox input[type="checkbox"] {
        margin: 0;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    /* Button Default - already exists but ensure it works */
    .bw-wizard .btn-default {
        display: inline-block;
        padding: 7px 25px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
        vertical-align: middle;
        cursor: pointer;
        user-select: none;
        border: none;
        border-radius: 999px;
        background: #fff;
        color: #e50050;
        transition: all 0.2s ease;
    }
    
    .bw-wizard .btn-default:hover {
        background: #ce0048;
        color: #fff;
        border-color: #111;
    }
    
    .bw-wizard .btn-default:active {
        transform: scale(0.98);
    }
    
    .bw-wizard .btn-default:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }
    
    /* Button Outline - replaces .btn-outline */
    .bw-wizard .btn-default.btn-outline {
        background: #fff;
        color: #e50050;
        border: none;
    }
    
    .bw-wizard .btn-default.btn-outline:hover {
        background: #ce0048;
        color: #fff;
        border-color: #111;
    }
    
    /* Submit button specific styling */
    .bw-wizard .wizard-actions button[type="submit"].btn-default {
        background: #fff;
        /* color: #000000; */
        border: none;
    }
    
    .bw-wizard .wizard-actions button[type="submit"].btn-default:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }
    
    /* Hidden utility */
    .bw-wizard .hidden {
        display: none !important;
    }
    
    /* Wizard Options - Matching Image Design */
    .bw-wizard .wizard-options {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        margin: 24px 0;
    }
    
    .bw-wizard .wizard-option {
        flex: 1 1 240px;
        min-width: 200px;
        background: #fff4f8;
        border: none;
        border-radius: 4px;
        padding: 8px 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 0.3s ease;
        text-align: left;
    }
    
    .bw-wizard .wizard-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    
    .bw-wizard .wizard-option:active {
        transform: translateY(0);
    }
    
    /* Icon container - circular outline */
    .bw-wizard .wizard-option-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 50%;
        border: 2px solid #f3d9e2; /* Light reddish-pink outline */
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .bw-wizard .wizard-option-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Text styling */
    .bw-wizard .wizard-option-text {
        font-size: 15px;
        font-weight: 500;
        color: #75213e; /* Dark reddish-pink */
        flex: 1;
    }
    
    /* Active/Selected state */
    .bw-wizard .wizard-option.selected {
        border: 2px solid #e50050;
        box-shadow: 0 4px 12px rgba(229, 0, 80, 0.2);
    }
    
    .bw-wizard .wizard-option.selected .wizard-option-icon {
        border-color: #e50050;
        background: #fff5f8;
    }
    
    /* Progress Bar UI - Matching Image Design */
    .bw-wizard .wizard-progressbar {
        margin-bottom: 20px;
        position: relative;
        padding: 5px 0; /* Add padding to accommodate dots */
        width: 85%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bw-wizard .wizard-progressbar-track {
        position: relative;
        height: 2px;
        background: #d3d3d3; /* Light grey line */
        border-radius: 999px;
        width: 100%;
        margin: 0;
        --progress: 0%; /* CSS variable for progress fill */
    }
    
    /* Fill effect - pink/red line up to current step */
    .bw-wizard .wizard-progressbar-track::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 2px;
        background: #e50050; /* Same pink/red color as active dots */
        border-radius: 999px;
        width: var(--progress);
        transition: width 0.35s ease;
        z-index: 1;
    }
    
    /* Make dots visible and style them - centered on the line */
    .bw-wizard .wizard-dot {
        display: block !important;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background: #d3d3d3; /* Light grey for inactive dots */
        border: none;
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 3;
        margin: 0;
        padding: 0;
    }
    
    /* Active dot - vibrant pink/red */
    .bw-wizard .wizard-dot.active {
        background: #e50050; /* Vibrant pink/red */
        border: none;
        width: 12px;
        height: 12px;
    }
    
    /* Completed dots - also pink/red */
    .bw-wizard .wizard-dot.completed {
        background: #e50050; /* Pink/red for completed steps */
        border: none;
    }
    
    /* Position dots evenly along the line - centered on the line */
    .bw-wizard .wizard-dot[data-step="1"] {
        left: 0%;
        transform: translate(-50%, -50%);
    }
    .bw-wizard .wizard-dot[data-step="2"] {
        left: 25%;
        transform: translate(-50%, -50%);
    }
    .bw-wizard .wizard-dot[data-step="3"] {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .bw-wizard .wizard-dot[data-step="4"] {
        left: 75%;
        transform: translate(-50%, -50%);
    }
    .bw-wizard .wizard-dot[data-step="5"] {
        left: 100%;
        transform: translate(-50%, -50%);
    }
