
        
        
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Inter', sans-serif;
            background-color: var(--Neutral-Surface-Default, #F3F4F6);
            font-size: 15px;
        }

        .contact-form {
            float: center;
            margin-top: 5%;
            /* margin-bottom: 5%; */ 
            padding: 10px 10px;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            background-color: none;
        }

        .contact-form2 {
            float: center;
            margin-top: 5%;
            /* margin-bottom: 5%; */ 
            padding: 10px 10px;
            border-radius: 10px;
            max-width: 800px;
            width: 100%;
            background-color: white;
        }

        .contact-form h2 {
            margin-bottom: 20px;
            font-size: 24px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 10px 15px;
            background-color: white;
            border-radius: 7px;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 7px;
            box-sizing: border-box;
            font-size: 14px;
        }

        .form-group input[type="radio"] {
            margin-right: 10px;
        }

        .input-group {
            display: flex; /* Align items horizontally */
            align-items: center; /* Center items vertically */
        }
        
        .input-group label {
            display: flex; /* Ensure radio button and text are aligned horizontally */
            align-items: center; /* Center radio button and text vertically */
            margin-right: 20px; /* Space between each label-radio button pair */
        }
        
        .input-group input[type="radio"] {
            margin-right: 5px; /* Space between radio button and label text */
            margin-top: -3px;
        }
        
        .input-group strong {
            margin-right: 15px; /* Space between label and radio buttons */
        }

        /* Container for the file input to make it responsive */
        .file-upload-wrapper {
            width: 100%; /* Full width for responsiveness */
            padding: 0px;
            box-sizing: border-box;
            font-size: 15px;
        }

        input[type="file" i] {
            appearance: none;
            background-color: #F3F4F6; /* Light grey background for better visibility */
            cursor: pointer;
            align-items: center;
            color: #333; /* Darker text color for contrast */
            text-overflow: ellipsis;
            text-align: center; /* Center the text */
            padding: 10px 15px;
            border: none; /* Add a border */
            border-radius: 5px; /* Rounded corners */
            white-space: nowrap;
            overflow: hidden !important;
            width: 100%; /* Full width of the container */
            box-sizing: border-box;
           
        }

        /* Responsive styling */
        input[type="file" i]::file-selector-button {
            background-color:  black;
         /* Button color */
            color: white; /* Button text color */
            padding: 8px 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }


        /* Add some spacing between selected file names */
        input[type="file" i]::after {
            content: '';
            display: block;
            margin-top: 5px;
            white-space: normal; /* Allow wrapping */
            text-overflow: ellipsis;
            overflow: hidden;
            margin-right: 20px;
        }

        /* Styling for the Select Locations section */
        fieldset {
            border: none;
            padding: 0;
            margin: 0;
            margin-bottom: 15px;
        }

        fieldset legend {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        fieldset div {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        /* Make checkboxes appear in two columns */
        fieldset div {
            width: calc(50% - 10px); /* Two items per row with a small gap */
        }

        fieldset {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        @media (max-width: 480px) {
            .contact-form {
                padding: 15px;
                max-width: 100%;
            }

            .form-group .input-group {
                display: flex;
                align-items: flex-start;
            }

            .form-group .input-group label {
                margin-right: 0;
            }

            .email-row {
                display: block;
                gap: 0px; /* Space between the two email fields */
            }
            
            .email-container {
                margin-bottom: 10px;
            }
        }

        .image-preview {
            display: flex;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .image-preview img {
            max-width: 100px; /* Set a maximum width for the images */
            margin: 5px; /* Space between images */
            border: 2px solid #ccc; /* Optional: border around images */
            border-radius: 5px; /* Optional: rounded corners */
        }


        /* Horizontal line styling */
        .horizontal-line {
            border-top: 1px solid #ccc; /* Gray line */
            margin: 20px 0; /* Margin above and below */
        }

        element.style {
            position: absolute;
            top: 5px;
            right: 5px;
            background-color: red;
            color: white;
            border: none;
            cursor: pointer;
            padding: 2px 5px;
            border-radius: 5%;
            font-size: 12px;
            width: 30px;
        }

        .confirmation-line {
            margin-top: 2px;
            height: 2px; /* Thickness of the line */
            width: 100%; /* Full width */
            background-color: transparent; /* Default color */
            transition: background-color 0.3s; /* Smooth transition */
        }
        

        /* Optional styling for the select element */
        .mce-group202 {
            width: 100%;
            height: 100px; /* Height can be adjusted as needed */
            border: 1px solid #ccc; /* Border styling */
            border-radius: 4px; /* Rounded corners */
            padding: 5px; /* Padding inside the select box */
        }


        .form-input-wide {
            position: relative;
            width: 100%;
            margin-bottom: 20px; /* Added margin for spacing between dropdowns */
        }

        .select-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .custom-select {
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 10px;
            cursor: pointer;
            width: 100%;
            box-sizing: border-box;
            background-color: none; /* Ensure white background */
        }

        .custom-select select {
            flex-grow: 1;
            border: none;
            outline: none;
            background: none;
            padding: 0 10px;
            font-size: 16px;
            cursor: pointer;
        }

        .dropdown-options {
            display: none;
            position: absolute;
            background-color: none;
            border: 1px solid #f4f4f4;
            border-radius: 4px;
            width: 100%;
            z-index: 1;
            max-height: 150px;
            overflow-y: auto;
        }

        .dropdown-options label {
            display: block;
            padding: 10px;
            cursor: pointer;
            background-color: none;;
        }

        .dropdown-options label:hover {
            background-color: #f0f0f0;
        }

        .selected-items {
            margin-top: 5px;
            padding: 5px;
            border: 1px solid #007bff;
            color: #007bff;
            border-radius: 3px;
        }

        .form-line {
            list-style: none; /* This removes the bullet or any default list style */
            padding-left: 0; /* Optional: to ensure no padding is applied */
        }

        .form-group select {
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 7px;
            background-color: white;
            color: #333;
            appearance: none;
            -moz-appearance: none;
            -webkit-appearance: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            font-size: 13px;
        }
    
        .form-group select:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
            outline: none;
        }
    
        .custom-select {
            position: relative;
        }
    
        .custom-select .fa {
            position: absolute;
            left: 0.75rem; /* Position the icon inside */
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none; /* Prevents clicking on the icon */
            color: #333;
        }

        a:-webkit-any-link {
            color: #22C55E;
            cursor: pointer;
        }


        .dropdown {
            position: relative;
            font-size: 14px;
            color: #333;
        }
        
        .dropdown-list {
            padding: 12px;
            background: white;
            position: absolute;
            top: 100%; /* Positions the dropdown list below the label */
            left: 0;
            right: 0;
            max-height: 200px; /* Adjust this value based on your needs */
            overflow-y: auto; /* Enables vertical scrolling */
            box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .15);
            transform-origin: 50% 0;
            transform: scale(1, 0);
            transition: transform .15s ease-in-out .15s;
            z-index: 1000; /* Ensure the dropdown appears above other content */
        }
        
        .dropdown-option {
            display: block;
            padding: 8px 12px;
            opacity: 0;
            transition: opacity .15s ease-in-out;
        }
        

        .dropdown.on .dropdown-list {
            transform: scale(1, 1);
            transition-delay: 0s;
        }
        
        .dropdown.on .dropdown-option {
            opacity: 1;
            transition-delay: .2s;
        }
        
        [type="checkbox"] {
            position: relative;
            top: 2px;
            margin-right: 4px;
        }

        #mc-embedded-subscribe {
            clear: both;
            width: 100%;
            display: block;
            margin: 0%;
        }
        
        input[type='radio'] {
            -webkit-appearance: none;
            width: 17px;
            height: 17px;
            border-radius: 50%;
            outline: none;
            border: 1px solid var(--Secondary-Surface-Default, #BABABA);
        }
    
        input[type='radio']:before {
            content: '';
            display: block;
            width: 60%;
            height: 60%;
            margin: 20% auto;
            border-radius: 50%;
        }
    
     input[type="radio"]:checked:before {
        background: var(--Surface-Default, #F8E907);
        }
        
        input[type="radio"]:checked {
          border-color: var(--Surface-Default, #F8E907);
          background-color: white;

        }
    
        .role {
            margin-right: 80px;
            margin-left: 20px;
            font-weight: normal;
        }
    
        .checkbox label {
            margin-bottom: 20px !important;
        }
    
        .roles {
            margin-bottom: 40px;
        }
       
        .email-row {
            display: flex;
            justify-content: space-between;
            gap: 45px; /* Space between the two email fields */
        }
        
        .email-container {
            flex: 1;
        }
        

        p{
            color: gray;
            font-size: 13px;
            margin-top:4px;
        }