.elementor-1773 .elementor-element.elementor-element-5f2011a9{margin-top:040px;margin-bottom:40px;}:root{--page-title-display:none;}/* Start custom CSS *//* General Form Styling */
.wpcf7-form {
    /* Centered form with max width */
    margin: 0 auto;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
.wpcf7-form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 0px; /* 5px gap between label and input */
}

/* Input, Select & Textarea Styling */
.wpcf7-form input, 
.wpcf7-form select, 
.wpcf7-form textarea {
    /* Space between fields */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    transition: 0.3s;
}

/* Improve focus effect */
.wpcf7-form input:focus, 
.wpcf7-form select:focus, 
.wpcf7-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    width: 100%;
    background: #007bff;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    background: #0056b3;
}

/* Checkbox Styling */
.wpcf7-form .wpcf7-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.wpcf7-form .wpcf7-checkbox input {
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 10px;
    }
    .wpcf7-form input, 
    .wpcf7-form select, 
    .wpcf7-form textarea {
        font-size: 14px;
    }
}


/* Red Mark */

/* Style for required fields: Add red asterisk after the label */
label span.required:after {
    content: " *";
    color: red;
}

/* Style for the required input fields with red border */
input:required, select:required, textarea:required {
    border: 2px solid red;
    background-color: #f8d7da;
}

/* Style when the field is focused */
input:required:focus, select:required:focus, textarea:required:focus {
    background-color: #f8d7da;
    box-shadow: 0 0 5px red;
}

/* Optional: Style for submit button */
input[type="submit"]:hover {
    background-color: #0056b3;
}/* End custom CSS */