   
        .menuvid {
            background: linear-gradient(90deg, rgb(0, 50, 100), rgb(28, 110, 160));
            color: #333;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            width: 100%;
        
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px;
        }
        
       
        
        .menu-container {
            display: flex;
            flex-wrap: wrap;
           
            overflow: hidden;
          /*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
        }
        
        .options-column {
            flex: 1;
            min-width: 300px;
          /*  background: #2c3e50; */
            color: white;
            padding: 40px 40px 40px 0;
            border-radius: 10px;
        }
        
        .options-column p {
            margin: 40px 0 8px;
            font-weight: 600;
            line-height: 1;
            padding-bottom: 10px;
        }

        .imgtext{
            width:100%;
        }
        
        .option-item {
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .option-item:hover {
            background: #34495e;
        }
        
        .option-item.active {
            background: #3498db;
            font-weight: bold;
        }
        
        .content-column {
            flex: 2;
            min-width: 300px;
            padding: 40px 0 40px 80px;
        }
        
        .content-item {
            display: none;
        }
        
        .content-item.active {
            display: block;
            
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .content-item h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color:#fff;
        }
        
        .content-item p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.2;
            color:#fff;
        }
        
        .content-image {
            width: 100%;
            max-height: 300px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button {
            display: flex;
            margin: 0 auto;
            justify-content: center;
            width: 80%;
            background: #e84621;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        
        .cta-button:hover {
            background:#d1111c;
        }

          .video-container {
            margin: 20px 0;
            text-align: center;
        }
        
        video {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            height:50vh;
            max-height: 400px;
            object-fit: cover;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .menu-container {
                flex-direction: column;
            }
        
            
            .options-column, .content-column {
                width: 100%;
                padding: 0;
            }

            header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
              .container {

            padding: 8px;
        }
        
        .option-item {
                padding: 12px;
                font-size: 0.9rem;
            }
            
            .content-item h3 {
                font-size: 1.5rem;
            }
            
            .content-item p {
                font-size: 1rem;
            }
        }
    </style>