/* Menu Page */
.menu {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.menu-item img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-right: 20px;
}

.menu-text {
    flex-grow: 1;
    text-align: left;
}

.menu-text h3 {
    margin: 5px 0;
}

.menu-text span {
    font-weight: bold;
    color: #6B4F4F;
}

/* About Page */
.about {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about figure {
    text-align: center;
}

.about img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits {
    list-style-type: none;
    padding: 0;
}

.benefits li {
    font-size: 1.2em;
    margin: 10px 0;
}
