* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.menu-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Removing gap between images if they are continuous */
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    /* Clips content to border radius */
    align-items: center;
    /* Center the button */
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2px;
    /* Tiny gap if they are separate sheets */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Soft shadow for depth */
}

/* Static Button Style */
.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 16px 32px;
    margin-top: 30px;
    margin-bottom: 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .menu-container {
        padding: 0;
    }

    .whatsapp-button {
        width: 100%;
        /* Full width button on mobile */
        text-align: center;
        max-width: 300px;
        /* But not too wide */
    }
}