* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
    background-color: #c7baba;
    color: #333;
    }
    
    .restaurant-menu {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    }
    
    .menu-header {
    text-align: center;
    margin-bottom: 0;
    }
    
    .main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-bottom: 80px ;
    }
    
    .menu-content {
    padding: 20px;
    }
    
    .menu-title {
    font-size: 2.5rem;
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: bold;
    }
    
    .menu-section {
    margin-bottom: 30px;
    }
    
    .section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    background-color: #ffecec;
    padding: 8px;
    border-radius: 5px;
    }
    
    .menu-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    }
    
    .item-name {
    font-weight: bold;
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 5px;
    }
    
    .item-description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 5px;
    }
    
    .item-price {
    font-weight: bold;
    color: #ff6b6b;
    font-size: 1.2rem;
    text-align: left;
    }