.elementor-4199 .elementor-element.elementor-element-83c2553{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}.elementor-4199 .elementor-element.elementor-element-2c7f20a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4199 .elementor-element.elementor-element-194f099{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4199 .elementor-element.elementor-element-136dad1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-4199 .elementor-element.elementor-element-83c2553{--width:90%;}.elementor-4199 .elementor-element.elementor-element-2c7f20a{--width:50%;}.elementor-4199 .elementor-element.elementor-element-194f099{--width:50%;}}/* Start custom CSS for container, class: .elementor-element-83c2553 *//* General Styling */
.radio-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between each radio button */
    font-family: 'Arial', sans-serif;
}

/* Style for individual radio button option */
.radio-option {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #f9f6f0;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2dace;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Add subtle elevation on hover */
.radio-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hide default radio button */
.radio-option input[type="radio"] {
    display: none;
}

/* Custom radio button styling */
.radio-option input[type="radio"] + .radio-label::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d2c5b2;
    margin-right: 15px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Checked state styling */
.radio-option input[type="radio"]:checked + .radio-label::before {
    background-color: #ac9379;
    border-color: #ac9379;
    box-shadow: 0 0 0 4px rgba(172, 147, 121, 0.2);
}

/* Label Text Style */
.radio-label {
    display: inline-block;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Optional: Change label text color on hover */
.radio-option:hover .radio-label {
    color: #ac9379;
}

/* Message Container Styling */
.message ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.message li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 25px;
    gap: 5px;
    position: relative;
}

.message li span {
    content: "✔"; /* Unicode checkmark */
    font-size: 18px;
    color: #ac9379;
    position: absolute;
    left: 0;
    top: 0;
}/* End custom CSS */