        :root {
            --primary-color: #dc3545;
            --secondary-color: #f8f9fa;
            --dark-color: #212529;
            --light-color: #ffffff;
            --text-color: #495057;
            --border-radius: 8px;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        .mcom-page {
            background-color: var(--light-color);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .mcom-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .mcom-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }
        
        .mcom-section {
            padding: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .mcom-section p {
            color: black;
        }
        
        .mcom-section h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .mcom-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .mcom-section h3 {
            color: var(--dark-color);
            font-weight: 600;
            margin-top: 25px;
        }
        
        .mcom-feature-box {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 15px;
            padding: 15px;
            background-color: var(--secondary-color);
            border-radius: var(--border-radius);
        }
        
        .mcom-feature-title {
            font-weight: 600;
            width: 400px;
            color: var(--primary-color);
        }
        
        .mcom-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .mcom-table th, .mcom-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .mcom-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .mcom-table tr:nth-child(even) {
            background-color: var(--secondary-color);
        }
        
        .mcom-table tr:hover {
            background-color: rgba(220, 53, 69, 0.1);
        }
        
        .mcom-university-list {
            list-style: none;
            padding: 0;
        }
        
        .mcom-university-item {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        
        .mcom-university-item:hover {
            background-color: var(--secondary-color);
        }
        
        .mcom-university-name {
            font-weight: 600;
        }
        
        .mcom-university-fee {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .mcom-faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        .mcom-faq-question {
            padding: 15px 20px;
            background-color: var(--secondary-color);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mcom-faq-question:hover {
            background-color: #e9ecef;
        }
        
        .mcom-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        
        .mcom-faq-item.active .mcom-faq-answer {
            padding: 15px 20px;
            max-height: 500px;
        }
        
        .mcom-faq-item.active .mcom-faq-question span {
            transform: rotate(45deg);
        }
        
        .mcom-faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .mcom-header {
                padding: 60px 15px;
            }
            
            .mcom-header h1 {
                font-size: 2rem;
            }
            
            .mcom-section {
                padding: 20px 15px;
            }
            
            .mcom-feature-box {
                flex-direction: column;
            }
            
            .mcom-feature-title {
                width: 100%;
                margin-bottom: 5px;
            }
            
            .mcom-table {
                display: block;
                overflow-x: auto;
            }
            
            .mcom-university-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .mcom-university-fee {
                margin-top: 5px;
            }
        }










        .mcom-flex-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: flex-start;
        }
        
        .mcom-content {
            flex: 1 1 60%;
        }
        
        .mcom-image {
            flex: 1 1 35%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .mcom-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px; /* optional for rounded corners */
        }
        
        /* Responsive tweak */
        @media (max-width: 768px) {
            .mcom-flex-wrapper {
                flex-direction: column;
            }
        
            .mcom-image {
                margin-top: 1.5rem;
            }
        }
        








        /* image bg  */

        .mcom-section-bg {
            background-image: url('banner1.jpg'); /* Replace with your image path */
            background-size: cover;
            background-position: right center;
            background-repeat: no-repeat;
            padding: 2rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .mcom-section-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            z-index: 1;
        }
        
        .mcom-section-bg * {
            position: relative;
            z-index: 2;
        }
        
        @media (max-width: 768px) {
            .mcom-section-bg {
                background-position: center;
                background-size: cover;
            }
        }
        








/* table scroll  */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }
  
  .table-responsive table {
    min-width: 300px; /* Adjust as needed based on your table's column count */
  }
  

  @media (max-width: 768px) {
    .table-responsive {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
  
    .table-responsive table {
      min-width: 300px;
    }
  }
  





  .university-logo {
    max-width: 600px;
    height: auto;
    display: block;
  }
  
  @media (max-width: 768px) {
    .university-logo {
      max-width: 300px;
      margin: 0 auto;
      display: block;
    }
  }
  
  @media (max-width: 480px) {
    .university-logo {
      max-width: 300px;
      margin: 10px auto;
      display: block;
    }
  }
  





/* Shift submenu to the left if it would overflow */
.dropdown-menu-left {
    left: auto !important;
    right: 100% !important;
    top: 0 !important;
  }
  