body{
                background-color: #f7f7f7;
                font-family: "Source Sans 3", serif;
            }
            h2 {
                font-weight: 600;
                font-size: 22px;
                line-height: 1;
                color: #252525;
                text-transform: capitalize;
            }
            .form-label{
                font-size: 16px;
                font-weight: 500;
                margin: 0;
            }
        .form-step { display: none; padding:20px }
        .form-step button, .mybtn {
            background-color: #e5aa34;
            border-radius: 50px !important;
            display: inline-block;
            font-weight: 400;
            line-height: 1.5;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            border-radius: .25rem;
            transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
            width: 146px;
            color: #fff !important;
        }
        .form-step button:hover, .mybtn:hover {
            background-color: #1D1D55;
        }
        .mybtn {
            width: 230px;
            padding: 10px;
        }
        .form-box input[type="radio" i] {
                width: auto;
                margin-right: 12px;
            }
        .form-step.active { display: block; }
        .form-box p {
            margin: 0 0 5px;
            font-size: 12px;
            color: #0000007a;
        }
        .form-box {
            margin-bottom: 20px;
        }
        .form-box input, .form-box select {
            width: 100%;
            border: 1px solid #cdd3d9;
            border-radius: 6px;
            padding: 11px 15px;
        }
        form#multiStepForm, div#form-message {
            max-width: 600px;
            width: 100%;
            margin: 50px auto;
            background: #fff;
            box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
            border-radius: 10px;
        }
        .mauticform-errormsg{
            color: red;
            font-size: 13px;
        }
        div#form-message {
            
        }
        button:disabled, button:disabled:hover {
            opacity: 0.3;
            background: black;
            cursor: not-allowed;
        }
        .progress-container {
            margin-bottom: 0px;
            text-align: center;
        }
        .progress-bar {
            list-style: none;
            padding:10px 0;
            display: flex;
            justify-content: space-between;
            background: #1D1D55;
            border-radius: 10px 10px 0 0;
        }
        .progress-bar li {
            width: calc(100% / 5); /* Adjust width for 5 steps */
            text-align: center;
            position: relative;
            font-weight: bold;
            color: #ccc;
        }
        .progress-bar li.active {
            color: #e5aa34;
        }
        .progress-bar li::before {
            content: "";
            width: 15px;
            height: 15px;
            background-color: #ccc;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
            top: 3px;
            position: relative;
        }
        .progress-bar li.active::before {
            background-color: #e5aa34;
        }
        /* .progress-bar li::after {
            content: "";
            width: 100%;
            height: 2px;
            background-color: #ccc;
            position: absolute;
            top: 10px;
            left: 50%;
            z-index: -1;
        } */
        .progress-bar li:last-child::after {
            display: none; /* Remove the last connecting line */
        }
        .progress-bar li.active + li::after {
            background-color: #e5aa34 /* Active step connector color */
        }