        .left {
            position: relative;
            width: 60%;
            background: url('bg.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        .left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        .left-content {
            max-width: 80%;
            z-index: 2;
            position: relative;
        }
        .right {
            width: 40%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .hidden {
            display: none;
        }
        .fade-in {
            display: block;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }
        .fade-out {
            opacity: 1;
            animation: fadeOut 0.5s forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        @keyframes fadeOut {
            to {
                opacity: 0;
                display: none;
            }
        }
        .form-group {
            margin: 10px 0;
        }
        input[type="radio"] {
            margin-right: 10px;
        }
        input[type="text"], input[type="email"], input[type="tel"], textarea, select {
            width: 100%;
            padding: 16px;
            margin: 5px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 18px;
        }
        
        select{
            color: #757575;
        }
        
        textarea[name="message"]{
            height: 150px;
        }
        .name-container {
            display: flex;
            justify-content: space-between;
        }
        .name-container .form-group {
            width: 48%;
        }
        button {
            color: #FFFFFF;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif !important;
            font-weight: 700;
            text-transform: uppercase;
            background-color: #6cce2c;
            padding-top: 20px;
            padding-right: 40px;
            padding-bottom: 20px;
            padding-left: 40px;
            margin-top: 10px;
            border:none;
            cursor: pointer;
        }
        button:hover {
            background-color: #333;
        }
        
        .back_btn{
            float: right;
            background-color: #333;
        }
        
        .success-message {
            color: green;
            text-align: center;
            display: none;
        }
        .error-message {
            color: red;
            text-align: center;
            display: none;
        }
        

        .rbtn {
            border: 1px solid #67C829;
            border-radius: 5px;
            padding: 10px;
            display: inline-block; /* This allows padding and border to show correctly */
            margin-bottom: 10px; /* Adds space between options */
        }

        /* Styles for radio button options */
        .radio-option {
            border: 1px solid #67C829;
            border-radius: 5px;
            padding: 15px 10px;
            margin-bottom: 10px; /* Space between each option */
            
        }
        
        .highlight{
            background-color: #6CCE2C;
            transform: scale(1.02);
        }
        
        .highlight label{
            font-size: 20px;
            font-weight: bold;
            color:#fff;
        }
        
        .radio-option label{
            cursor: pointer; /* Changes cursor to pointer when hovering */
            width: 100%;
            display: block;
        }
        .radio-option input[type="radio"] {
            margin: 0; /* Reset margin to align better */
            margin-right: 10px; /* Keep space between radio and label text */
        }

        .g-recaptcha{
                padding: 0px 0px 10px 0px;
        }