    /* General Form Styles */

    .mollie-form{
        padding: 50px;
        font-family: sans-serif;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        background-color: #f4f1f5;
    }

    /* Form Field Rows */
    .mollie_forms_field_row {
        margin-bottom: 20px;
        width: 100%;
    }

    /* Two-Column Layout for the first 4 fields on larger screens */
    /* Using :nth-of-type to correctly select the divs, ignoring other element types like hidden inputs */
    form .mollie_forms_field_row:nth-of-type(-n+4) {
        width: 48%;
    }

    /* Full-Width for the rest of the fields */
    form .mollie_forms_field_row:nth-of-type(n+5) {
        width: 100%;
    }

    /* Labels */
    label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    /* Required Fields */
    .mollie-forms-required {
        color: #c02b0a !important;
    }

    /* Text, Email, and Phone Inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 100%;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #ccc;
        background-color: transparent;
        transition: border-color 0.3s;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus {
        outline: none;
        border-bottom: 2px solid #007bff;
    }

    /* Select Dropdowns */
    select {
        width: 100%;
        padding: 8px 0;
        border: none;
        border-bottom: 1px solid #ccc;
        background-color: transparent;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
        background-repeat: no-repeat;
        background-position: right 0.7em top 50%, 0 0;
        background-size: 0.65em auto, 100%;
    }

    /* Radio Buttons */
    .mollie_forms_field_row input[type="radio"] {
        margin-right: 10px;
    }

    /* Submit Button */
    button[type="submit"] {
        color: #ffffff !important;
        font-size: 18px !important;
        background-color: #e76408 !important;
        display: flex;
        justify-self: end;
        border-radius: 100vw !important;
        padding: 8px 24px !important;
        font-weight: bold !important;
        border-color: transparent;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    button[type="submit"]:hover {
        background-color: #c76b30 !important;
    }

    .jcf-select {
        width: 100%;
    }

     .jcf-select-opener{
            color: #4b195d !important;
        }
    /* --- Responsive Styles --- */
    /* For tablets and mobile phones */
    @media (max-width: 768px) {
        form {
            padding: 20px;
        }
        /* Make the two-column fields full-width */
        form .mollie_forms_field_row:nth-of-type(-n+4) {
            width: 100%;
        }
        .jcf-select-opener{
            color: #4b195d !important;
        }

        /* Adjust submit button position if needed */
        button[type="submit"] {
            width: 100%;
            text-align: center;
            justify-content: center;
        }
    }