 /* Reset and base styles */
 
        
        
        .parent-div {
    width: 100%; /* or any specific width */
    height: 300px; /* or any specific height */
}

.parent-div img {
    width: 100%;
    min-height: 900px;
    object-fit: cover; /* or contain, depending on your needs */
}
        
        /* Main container styles */
        .menu-system {
            display: flex;
            width: 100%;
            max-width: 1200px;
            min-height: 600px;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        /* Parent container with orange background */
        .parent-container {
            background-color: #FF7F00;
            padding: 20px;
            display: flex;
            flex-direction: column;
            width: 100%;
            border-radius: 10px;
        }
        
        .parent-container > h1 {
            color: white;
            margin-bottom: 20px;
            font-size: 32px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            text-align: center;
        }
        
        /* Content area */
        .menu-content {
            display: flex;
            flex: 1;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Menu list styles */
        .menu-list {
            width: 300px;
            background-color: #f0f0f0;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .menu-list-item {
            display: flex;
            align-items: center;
            padding: 12px;
            background-color: #e0e0e0;
            margin-bottom: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .menu-list-item h1 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            flex-grow: 1;
        }
        
        .menu-list-item img {
            
            margin-left: 7px;
            margin-right: 7px;
            border-radius: 8px;
           
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .menu-list-item.active {
            background-color: white;
            color: #000;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .menu-list-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 7px;
            background-color: #FF7F00;
        }
        
        /* Container for menu content */
        .menu-container {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }
        
        .menu-container-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .menu-container-item.active {
            display: block;
        }
        
        .menu-container-item h2 {
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #FF7F00;
            padding-bottom: 10px;
        }
        
        .menu-container-item p {
            line-height: 1.6;
            color: #555;
            margin-bottom: 15px;
        }
        
        /* Fancy content styling */
        .content-box {
            min-height: 900px;
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #FF7F00;
        }
        
        .feature-list {
            list-style-type: none;
            margin: 20px 0;
        }
        
        .feature-list li {
            padding: 10px 15px;
            background-color: #f3f3f3;
            margin-bottom: 8px;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }
        
        .feature-list li::before {
            content: '✓';
            color: #FF7F00;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .info-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
        }
        
        .info-card h3 {
            color: #FF7F00;
            margin-bottom: 10px;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            
            .parent-div img {
    width: 100%;
    min-height: 500px;
    object-fit: cover; /* or contain, depending on your needs */
}
            
            
            .menu-system {
                flex-direction: column;
            }
            
            .menu-content {
                flex-direction: column;
            }
            
            .menu-list {
                width: 100%;
                max-height: 300px;
            }
        }
