body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.menu-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #444;
}

.menu-section {
    margin-bottom: 20px;
}

.menu-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.menu-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    cursor: pointer;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background-color: #f0f0f0;
}

.dish-details {
    display: none;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.dish-details p {
    margin: 0;
    line-height: 1.6;
}

.dropdown-icon {
    float: right;
    font-weight: bold;
    color: #888;
    transition: transform 0.2s;
}

.menu-item.active .dropdown-icon {
    transform: rotate(180deg);
}

.button {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 1.2em;
    font-family: Arial, sans-serif;
    color: white;
    background-color: #444;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #666;
    transform: translateY(-2px);
}

.button:active {
    background-color: #333;
    transform: translateY(0);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 20px;
}

@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }
}

.home-button {
    display: inline-block;
    padding: 10px;
    margin: 10px;
    font-size: 1.5em;
    color: white;
    background-color: #444;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.home-button:hover {
    background-color: #666;
    transform: translateY(-2px);
}

.home-button:active {
    background-color: #333;
    transform: translateY(0);
}

/* Responsive for the home button */
@media (max-width: 600px) {
    .home-button {
        font-size: 1.2em;
        padding: 8px;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .menu-container {
        margin: 10px;
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    .menu-section h2 {
        font-size: 1.3em;
    }
}

/* Mobile Responsive for buttons */
@media (max-width: 600px) {
    .button {
        font-size: 1em;
        padding: 10px 20px;
    }
}