@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 800px) {}

@media screen and (max-width: 480px) {
    /* Modal (background) */
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Stay in place */
        z-index: 100;
        /* Sit on top (higher than other elements) */
        left: 0;
        top: 0;
        width: 100%;
        /* Full width */
        height: 100%;
        /* Full height */
        overflow: auto;
        /* Enable scroll if needed */
        background-color: rgba(0, 0, 0, 0.7);
        /* Black w/ opacity */
        display: flex;
        /* Use flexbox for centering */
        align-items: center;
        /* Center vertically */
        justify-content: center;
        /* Center horizontally */
    }
    /* Modal Content/Box */
    .modal-content {
        background-color: #fefefe;
        margin: auto;
        /* Auto margin for centering */
        padding: 30px;
        border: 1px solid #888;
        width: 80%;
        /* Could be responsive */
        max-width: 50%;
        /* Max width for larger screens */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        position: absolute;
        /* Needed for absolute positioning of close button */
        animation-name: animatemodal;
        animation-duration: 0.4s;
        color: #333;
        /* Darker text for readability on light background */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    /* The Close Button */
    .close-button {
        color: #aaa;
        float: right;
        /* Positions it to the top right */
        font-size: 28px;
        font-weight: bold;
        position: absolute;
        /* Absolute positioning within the modal-content */
        top: 10px;
        right: 20px;
        cursor: pointer;
        z-index: 9999;
    }
    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    /* Add some padding to paragraphs inside the modal content */
    #modalBodyContent p {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    /* Animation for the modal */
    @keyframes animatemodal {
        from {
            top: -300px;
            opacity: 0
        }
        to {
            top: 0;
            opacity: 1
        }
    }
    form#estimationForm {
        width: 90%;
    }
    form h3 {
        font-size: 25px;
        line-height: 36px;
    }
    label {
        font-size: 14px;
    }
    select {
        height: 40px;
    }
    input {
        height: 40px;
    }
    option {
        color: black;
    }
    button {
        padding: 12px 0;
        font-size: 16px;
    }
    div#estimateModal {
        z-index: 999;
    }
    .modal-content {
        max-width: 100%;
        padding: 20px;
    }
    h2 {
        font-size: 36px;
        line-height: 45px;
    }
    /* Example CSS for your modal */
}