.elementor-6228 .elementor-element.elementor-element-8897ff1{--display:flex;--background-transition:0.3s;}#elementor-popup-modal-6228{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-6228 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-6228 .dialog-close-button{display:flex;}#elementor-popup-modal-6228 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for container, class: .elementor-element-8897ff1 *//* Contact Form Container */
.wpcf7 form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
.wpcf7 form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    clear: both; /* Ensure labels are above inputs */
}

/* Input Fields */
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="number"],
.wpcf7 form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: none;
}

/* Radio Buttons */
.wpcf7 form input[type="radio"] {
    margin-right: 10px;
}

/* Style for radio button labels */
.wpcf7 form label span.wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
    font-weight: normal; /* Optional: Make radio labels lighter */
}

/* Checked radio button styling */
.wpcf7 form input[type="radio"]:checked {
    background-color: #007bff;
    border-color: #007bff;
}

/* Focus state for inputs, textarea, and radio buttons */
.wpcf7 form input:focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus,
.wpcf7 form input[type="radio"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Submit Button */
.wpcf7 form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width for better accessibility */
}

.wpcf7 form input[type="submit"]:hover {
    background-color: #0056b3;
}
/* Add space below the radio button group */
.wpcf7-list-item {
    margin-bottom: 20px; /* Adjust the value as needed */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wpcf7 form {
        padding: 15px;
    }
    .wpcf7 form input[type="submit"] {
        width: 100%; /* Full width submit button on smaller screens */
    }
}

/* Adjust margin for better spacing of radio buttons and other inputs */
.wpcf7 form label span.wpcf7-list-item {
    margin-bottom: 15px; /* Space between radio buttons */
}/* End custom CSS */