
        body {
            font-family: 'Times New Roman', Times, serif;
            background: linear-gradient(to right, #e0eafc, #cfdef3);
            margin: 0;
            padding: 20px;
        }

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.menu-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin: 15px;
    overflow: hidden;
    width: 280px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h2 {
    font-size: 1.6em;
    color: #333;
    margin: 15px 10px 5px;
}

.menu-item p {
    color: #555;
    font-size: 0.9em;
    margin: 0 10px 15px;
}

.menu-item button {
    background-color: #007bff;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-size: 1em;
    margin: 10px 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-item button:hover {
    background-color: #0056b3;
}


        .order-details {
            border: 1px solid #ccc;
            padding: 10px;
            margin: 10px 0;
            background: white;
            border-radius: 5px;
        }
        input[type="email"],
        input[type="tel"],
        textarea {
            width: calc(100% - 20px);
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 10px;
        }
        textarea {
            resize: vertical;
        }
        strong {
            font-size: 1.2em;
            color: #35424a;
        }

    @media (max-width: 600px) {
    .menu-item {
        width: 90%;
    }
}