<script>
function getQueryParam(param) {
    let urlParams = new URLSearchParams(window.location.search);
    return urlParams.get(param);
}
let phoneNumber = getQueryParam('phone');
if (phoneNumber) {
    window.location.href = `tel:${02088557377}`;
}
</script>