  /* Basic styling for visual presentation */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header styles */
        header {
            background-color: #2c1810;
            color: #fff;
            padding: 1rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f4a460;
            z-index: 1001;
        }
        
        /* Mobile menu toggle button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        
        /* Navigation styles */
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: block;
        }
        nav a:hover {
            background-color: rgba(244, 164, 96, 0.2);
            color: #f4a460;
        }
        /* Active page indicator */
        nav a.active {
            background-color: #f4a460;
            color: #2c1810;
            font-weight: bold;
        }
        
        /* Mobile responsive navigation */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #2c1810;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-in-out;
            }
            
            nav.open {
                max-height: 400px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            
            nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
            }
            
            nav li {
                width: 100%;
            }
            
            nav a {
                padding: 1rem 2rem;
                border-radius: 0;
            }
        }
        
        /* Page header */
        .page-header {
            background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)),
                        url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1200') center/cover;
            color: #fff;
            text-align: center;
            padding: 4rem 0;
        }
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        /* Main content styles */
        main {
            padding: 3rem 0;
        }
        
        .menu-section {
            margin-bottom: 4rem;
        }
        
        .menu-section h2 {
            color: #2c1810;
            margin-bottom: 2rem;
            font-size: 2rem;
            text-align: center;
            border-bottom: 3px solid #f4a460;
            padding-bottom: 1rem;
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .menu-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .menu-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .menu-card-content {
            padding: 1.5rem;
        }
        
        .menu-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .menu-card-content h3 {
            color: #2c1810;
            font-size: 1.3rem;
        }
        
        .menu-card-price {
            color: #f4a460;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .menu-card-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Footer styles */
        footer {
            background-color: #2c1810;
            color: #fff;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        footer p {
            margin-bottom: 0.5rem;
        }
        
        /* Responsive typography */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
        }
    