/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

body{
	background-color: #f2f7fc;
}

a.elementor-button, li.elementor-icon-list-item a{
	text-decoration:none;
}

footer a{
	color: white;
}

@media only screen and (min-width: 988px) {
	#contactform{
		max-width: 800px;
		width: 550px;
	}
}

/* Container styling */
#contactform {
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Label styling */
#contactform label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Input and textarea styling */
#contactform input[type="text"],
#contactform input[type="email"],
#contactform input[type="tel"],
#contactform textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Radio button styling */
#contactform .wpcf7-radio {
/*     margin-bottom: 0px; */
	margin: 0;
}

#contactform .wpcf7-radio span {
    display: inline;
/*     margin-bottom: 0px; */
		margin: 0;
}

#contactform br{
	display:none;
}

#contactform .wpcf7-radio input[type="radio"] {
    margin-right: 8px;
}

/* Submit button styling */
#contactform input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

#contactform input[type="submit"]:hover {
    background-color: #005bb5;
}

/* Error message styling */
.wpcf7-not-valid-tip {
    color: #d9534f;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

/* Success message styling */
.wpcf7-mail-sent-ok {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-bottom: 20px;
}