section.enquiry_form {
    background: #e0e9f2;
    padding: 60px;
}

.box_container {
    padding: 0;
    /* remove extra padding to align content */
    background: white;
    border: none;
    /* remove unwanted border */
    border-radius: 20px;
    /* keep curves consistent */
}

.box_container h2 {
    font-family: "SWZ721E";
    font-size: 20px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 8px;
}

.text_element {
    font-family: "SWZ721L";
    font-size: 18px;
}

.radio_container {
    display: flex;
    gap: 20px;
}

.radio_input {
    transform: scale(1.2);
}

.radio_input input[type="radio"] {
    margin-left: 4px;
    margin-right: 4px;
}

.radio_input label {
    font-family: "SWZ721L";
}

.form_input {
    width: 50%;
}

.form_element {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form_element:last-child {
    margin-bottom: 0;
}

input.input_text {
    padding: 6px 11px;
    border: 1px solid #b2b2b2;
    border-radius: 5px;
    width: 100%;
    font-family: "SWZ721L";
}

.form_left {
    width: 50%;
}

.form_right {
    width: 70%;
}

.message_box {
    height: 100%;
    padding: 6px 11px;
    border: 1px solid #b2b2b2;
    border-radius: 5px;
    width: 100%;
    font-family: "SWZ721L";
}

.radio_box input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.4);
    font-family: "SWZ721L";
}

.radio_box label {
    font-family: "SWZ721L";
    font-size: 18px;
    margin-bottom: 14px;
}

.flex_box {
    display: flex;
    align-items: center;
    margin-top: 1px;
    /* margin-bottom: 20px; */
    /* border-bottom: 2px solid var(--black); */
}

.submit_block button {
    color: var(--purple);
    font-family: "SWZ721E";
    background: transparent;
    border: 0;
    font-size: 20px;
}

.contact_form h2 {
    border: 0;
}

.link_element {
    margin-top: 20px;
}

.link_element p {
    margin-bottom: 0;
    font-family: "SWZ721L";
    font-size: 20px;
}

.link_element a {
    font-family: "SWZ721L";
    font-size: 20px;
    color: var(--black);
    text-decoration: none;
}

.link_element a.font_blue {
    color: #1fa0d2;
    font-family: "SWZ721N";
    font-weight: 500;
    font-size: 20px;
}

.enquiry_content {
    margin-top: 20px;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Background overlay */
    justify-content: center;
    align-items: center;
}

/* Modal content box */
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 95%;
    max-width: 960px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    border: none;
    /* Remove any inner border */
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.form_main {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.form_left {
    width: 58%;
}

.form_right {
    width: 40%;
}

.width_full {
    width: 200%;
}

textarea.message_box {
    min-height: 210px;
    min-width: 400px;
    /* better vertical height */
}
@media (max-width: 992px) {
    .form_left,
    .form_input {
        width: 100%;
    }
    .form_element {
        flex-wrap: wrap;
        width: 100%;
    }
    .form_container {
        width: 100%;
    }
    textarea.message_box {
        min-height: unset;
        min-width: unset;
        height: unset;
        width: 100%;
    }
    .form_right {
        width: 100%;
    }
    .flex_box {
        flex-wrap: wrap;
        gap: 10px;
    }
}
