/* Custom styles to match dropdown fields with input field styling */
.contact-form .nice-select {
    padding: 13px 40px !important;
    background-color: #fff !important;
    color: #273f5b !important;
    margin-bottom: 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15) !important;
    border: 1px solid transparent !important;
    text-align: left !important;
}

.contact-form .nice-select:focus {
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25) !important;
    color: #0083ff !important;
    background-color: #fff !important;
}

/* Ensure select elements also match */
.contact-form select {
    padding: 13px 40px !important;
    border: 1px solid transparent !important;
    background-color: #fff !important;
    color: #273f5b !important;
    margin-bottom: 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 30px 0 rgba(18, 25, 33, 0.15) !important;
    text-align: left !important;
}

.contact-form select:focus {
    box-shadow: 5px 0 40px 0 rgba(0, 88, 171, 0.25) !important;
    color: #0083ff !important;
}

/* Style the dropdown arrow to match */
.contact-form .nice-select:after {
    border-bottom: 2px solid #839dbc !important;
    border-right: 2px solid #839dbc !important;
}

.contact-form .nice-select:focus:after {
    border-bottom: 2px solid #0083ff !important;
    border-right: 2px solid #0083ff !important;
}

/* Ensure dropdown options are also left-aligned */
.contact-form .nice-select .list {
    text-align: left !important;
}

.contact-form .nice-select .option {
    text-align: left !important;
}