.elementor-2093 .elementor-element.elementor-element-7c70896{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-2093 .elementor-element.elementor-element-7c70896{--margin-top:50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-2093 .elementor-element.elementor-element-7c70896{--width:100%;}}/* Start custom CSS for shortcode, class: .elementor-element-7a4aaec *//* Form container */
.wpcf7 form {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    width: 95%;
    margin: 50px auto;
    font-family: 'Arial', sans-serif;
    color: #000000;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Main heading */
.wpcf7 form h2 {
    font-size: 32px;
    color: #CC9031;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Paragraphs / subheadings */
.wpcf7 p {
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #000000;
    font-size: 18px;
}

/* Labels */
.wpcf7 label {
    display: block;
    margin-bottom: 10px;  /* more space under labels */
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}

/* Text, Email, Number, Textarea, Select */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #CC9031;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 30px;
    box-sizing: border-box;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Input focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #000000;
    box-shadow: 0 0 10px #CC9031;
    outline: none;
}

/* Checkbox / Radio individual spacing */
.wpcf7 label > input[type="radio"],
.wpcf7 label > input[type="checkbox"] {
    margin-right: 12px;
    accent-color: #CC9031;
}

/* Checkbox/Radio group container - multiple columns on desktop */
.checkbox-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    background-color: #CC9031;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0 auto;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #000000;
    transform: scale(1.05);
}

/* Placeholder color */
.wpcf7 ::placeholder {
    color: #999999;
}

/* Field wrapper spacing */
.wpcf7-form-control-wrap {
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .wpcf7 form {
        padding: 40px 45px;
    }
}

@media (max-width: 768px) {
    .wpcf7 form {
        padding: 25px 20px;
        width: 95%;
    }

    .checkbox-radio-group {
        grid-template-columns: 1fr; /* stack options on mobile */
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}/* End custom CSS */