.footer-container {
    width: 100%;
    height: 180px;
}

.footer-section-1 {
    height: 110px;
    background-color: #454545;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.footer-logo {
    width: 230px;
    height: 90px;
    object-fit: cover;
}

.footer-section-2 {
    height: 70px;
    background-color: #505050;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .footer-container {
        width: 100%;
        height: 150px;
    }

    .footer-section-1 {
        height: 90px;
        background-color: #454545;
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .footer-logo {
        width: 200px;
        height: 80px;
        object-fit: cover;
    }

    .footer-section-2 {
        height: 60px;
        background-color: #505050;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 15px;
    }
}

.footer-contact-section {
    background-color: #454545; /* Light grey background */
    padding: 20px;
    color: #fff;
}

.footer-contact-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff; /* Darker text color for better contrast */
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #535353; /* Slightly darker grey for contact items */
    border-radius: 3px;
}

.contact-phone {
    font-weight: bold;
    color: #fff; /* Black color for phone numbers */
}

.contact-name {
    font-style: italic;
    color: #fff; /* Dark grey color for restaurant names */
}
