* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.menu-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1 {
    color: #333;
    margin-bottom: 1rem;
}

.menu-section {
    margin-bottom: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.menu-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
}

.price {
    color: #27ae60;
    font-weight: bold;
}