body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    position: relative;
    width: 100%;
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
}

.call-now {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #D95520; /* Slightly lighter color */
    color: black; /* Black text color */
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adding a shadow for better visibility */
}

.call-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(1); /* Inverting colors to make the icon white */
}

