* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f7f4ef;
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: #222;
    color: white;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

header h1 {
    margin-bottom: 8px;
    font-size: 2.5rem;
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.menu-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.menu-section h2 {
    margin-bottom: 20px;
    color: #d35400;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span:last-child {
    font-weight: bold;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    .logo {
        width: 90px;
        height: 90px;
    }
}