.elementor-29333 .elementor-element.elementor-element-ea9e5b4{--display:flex;}.elementor-29333 .elementor-element.elementor-element-9096f62 > .elementor-widget-container{margin:-11px -11px -11px -11px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-29333 .elementor-element.elementor-element-ea9e5b4{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-ea9e5b4 *//* Main container styles */
.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

/* Section styles */
.section1, .section2 {
    flex: 1 1 300px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.section1 h2, .section2 h2 {
    border-top: 10px solid #3E61A5;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: black;
    margin-top: 30px;
}

.section1 h3, .section2 h3 {
    border-top: 10px solid #3E61A5;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    color: black;
    
    margin-top: 30px;
}

.section1 p, .section2 p {
    margin-bottom: 15px;
}

/* Input and textarea styles */
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="file"],
.wpcf7 input[type="text"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="checkbox"], 
.wpcf7 input[type="radio"] {
    margin-right: 10px;
}

/* Submit button styles */
.wpcf7 input[type="submit"] {
    background: #3E61A5;
    color: #fff;
    padding: 10px 55px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7 input[type="submit"]:hover {
    background: #0056b3;
}

/* Specific form field styles */
.wpcf7 .submit-container {
    text-align: center;
    margin-top: 30px;
}

/* Custom checkbox styles */
.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.wpcf7-checkbox label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create custom checkbox */
.wpcf7-checkbox input[type="checkbox"] + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
}

/* Create custom checkbox when checked */
.wpcf7-checkbox input[type="checkbox"]:checked + span::before {
    background-color: #007bff;
    border-color: #007bff;
}

/* Checkmark for custom checkbox */
.wpcf7-checkbox input[type="checkbox"]:checked + span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .main-container {
        flex-direction: column;
        padding:0;
    }
    .wpcf7 .submit-container {
    text-align: left;
    margin-top: 20px;
    }
    .section1 h2, .section2 h2,
    .section1 h3, .section2 h3{
        font-size:20px;
    }
}/* End custom CSS */