       /* PART TWO OF STYLES.CSS */
       #installBanner {
        position: fixed;
        bottom: -100px;
        left: 0;
        right: 0;
        background-color: #003B95;
        color: #fff;
        padding: 12px;
        text-align: center;
        z-index: 9999;
        transition: bottom 0.3s ease-in-out;
    }
    #installBanner.show {
        bottom: 0;
    }
    .install-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    .install-text {
        margin-bottom: 10px;
    }
    .install-buttons {
        display: flex;
        gap: 10px;
    }
    .install-button {
        padding: 8px 16px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.2s;
        width: 120px;
    }
    #installApp {
        background-color: #ffffff;
        color: #003B95;
    }
    #cancelInstall {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
    }
    #cookie-consent {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.95);
        color: #fff;
        padding: 24px;
        border-radius: 14px;
        width: 90%;
        max-width: 420px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
        display: none;
        z-index: 9999;
    }
    .cookie-content {
        text-align: left;
    }
    .cookie-content h2 {
        color: #fff;
        font-size: 24px;
        margin: 0 0 12px 0;
        font-weight: 500;
    }
    .cookie-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 24px 0;
    }
    .cookie-buttons {
        display: flex;
        gap: 12px;
    }
    .cookie-button {
        flex: 1;
        padding: 12px 24px;
        border: none;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    #accept-cookies {
        background-color: #003B95;
        color: #ffffff;
    }
    #reject-cookies {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    #cookie-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 9998;
    }
    .chatbot-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }
    .chat-button {
        background-color: #003B95;
        color: white;
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }
    .chat-button:hover {
        transform: scale(1.1);
    }
    .chat-icon {
        width: 30px;
        height: 30px;
        color: white;
    }
    .chatbot-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
    .chatbot-modal {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 600px;
        height: 80%;
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        z-index: 1002;
    }
    @media (max-width: 768px) {
        .chatbot-modal {
            width: 95%;
            height: 90%;
        }
        .chatbot-container {
            bottom: 70px;
        }
    }
    body.modal-open {
        overflow: hidden;
    }

    /* Restaurant of the Day Hero Styles */
    .restaurant-of-the-day-hero {
        position: relative;
        color: #ffffff;
        padding: 60px 0;
        text-align: center;
        overflow: hidden;
    }
    .restaurant-of-the-day-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 59, 149, 0.7);
        z-index: 1;
    }
    .restaurant-of-the-day-hero .container {
        position: relative;
        z-index: 2;
    }
    .restaurant-of-the-day-hero h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .restaurant-of-the-day-card {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-width: 800px;
        margin: 0 auto;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    .restaurant-of-the-day-card:hover {
        transform: translateY(-5px);
    }
    .restaurant-of-the-day-card .content {
        display: flex;
        align-items: center;
    }
    .restaurant-of-the-day-card .image-container {
        flex: 0 0 50%;
    }
    .restaurant-of-the-day-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .restaurant-of-the-day-card .info {
        flex: 1;
        padding: 20px;
        text-align: left;
    }
    .restaurant-of-the-day-card h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: #ffffff;
    }
    .restaurant-of-the-day-card p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .restaurant-of-the-day-card .rating {
        font-size: 1.2rem;
        color: #ffa500;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .restaurant-of-the-day-card .rating .star-icon {
        color: #ffa500;
    }
    .explore-button {
        display:center;
        background-color: #003B95;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .explore-button:hover {
        background-color: #002d70;
    }
    @media (max-width: 768px) {
        .restaurant-of-the-day-card .content {
            flex-direction: column;
        }
        .restaurant-of-the-day-card .image-container,
        .restaurant-of-the-day-card .info {
            flex: 0 0 100%;
        }
        .restaurant-of-the-day-card img {
            height: 200px;
        }
        .restaurant-of-the-day-card h3 {
            font-size: 1.4rem;
        }
        .restaurant-of-the-day-hero h2 {
            font-size: 1.5rem;
    }
        .restaurant-of-the-day-card p {
            font-size: 0.9rem;
        }
        .restaurant-of-the-day-card .rating {
            font-size: 1rem;
        }
        .explore-button {
            display: flex;
            justify-content:center;
            align-items: center;
            padding: 10px 10px;
            font-size: 0.9rem;
        }
    }