.elementor-4646 .elementor-element.elementor-element-9c862fc{--display:flex;}/* Start custom CSS for html, class: .elementor-element-88c414a */:root {
    --primary: #003567;
    --secondary: #007c30;
    --rare: #a97800;
    --text: #000000;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
  }

  /* Main Container with subtle medical cross background pattern */
  .mbbs-blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: var(--text);
    font-family: inherit; /* Inherits from WP Theme */
    line-height: 1.8;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 18h-4v4h4v4h4v-4h4v-4h-4v-4h-4v4z' fill='%23003567' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  }

  /* Typography */
  .mbbs-blog-container h1, 
  .mbbs-blog-container h2, 
  .mbbs-blog-container h3, 
  .mbbs-blog-container h4 {
    color: var(--primary);
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 700;
  }

  .mbbs-blog-container h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-top: 0; }
  .mbbs-blog-container h2 { font-size: clamp(1.5rem, 3vw, 2rem); border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; }
  .mbbs-blog-container h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
  .mbbs-blog-container p { margin-bottom: 1.25em; font-size: 1.1rem; }
  .mbbs-blog-container a { color: var(--secondary); text-decoration: none; font-weight: 600; border-bottom: 1px dashed var(--secondary); transition: all 0.3s; }
  .mbbs-blog-container a:hover { color: var(--primary); border-bottom-style: solid; border-color: var(--primary); }

  /* Hero & Badges */
  .hero { text-align: center; margin-bottom: 40px; padding: 20px 0; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fefce8;
    color: var(--rare);
    border: 1px solid #fef08a;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .hero-intro { font-size: 1.25rem !important; color: #334155; max-width: 800px; margin: 0 auto; }

  /* Images */
  .mbbs-blog-container figure { margin: 40px 0; padding: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); background: #fff; }
  .mbbs-blog-container img { width: 100%; height: auto; display: block; border-radius: 12px 12px 0 0; }
  .mbbs-blog-container figcaption { padding: 15px; background: var(--bg-light); color: #64748b; font-size: 0.9rem; text-align: center; font-style: italic; border-top: 1px solid var(--border-color); }

  /* Table of Contents */
  .toc-container { background: #fff; border: 1px solid var(--border-color); border-radius: 10px; margin: 30px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
  .toc-header {
    background: var(--primary); color: #fff; padding: 18px 24px; font-weight: 700; font-size: 1.2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; border-radius: 10px; transition: border-radius 0.3s;
  }
  .toc-header.active { border-radius: 10px 10px 0 0; }
  .toc-header::after { content: '▼'; font-size: 0.8rem; transition: transform 0.3s; }
  .toc-header.active::after { transform: rotate(180deg); }
  .toc-content { display: none; padding: 20px 24px; background: var(--bg-light); border-radius: 0 0 10px 10px; }
  .toc-content ol { margin: 0; padding-left: 20px; }
  .toc-content li { margin-bottom: 12px; }
  .toc-content a { border: none; color: var(--primary); font-weight: 500; font-size: 1.05rem; }
  .toc-content a:hover { color: var(--secondary); text-decoration: underline; }

  /* Alert Boxes */
  .box { padding: 24px; border-radius: 10px; margin: 30px 0; }
  .box-title { font-weight: 800; font-size: 1.2rem !important; margin-top: 0 !important; margin-bottom: 10px !important; display: flex; align-items: center; gap: 8px; }
  .box p:last-child { margin-bottom: 0; }
  
  .box-danger { background-color: #fffbeb; border-left: 5px solid var(--rare); color: #000; }
  .box-danger .box-title { color: var(--rare); }
  
  .box-info { background-color: #f0fdf4; border-left: 5px solid var(--secondary); color: #000; }
  .box-info .box-title { color: var(--secondary); }

  /* Red Flag Cards */
  .redflag-card {
    background: #fff; border: 1px solid var(--border-color); border-left: 5px solid var(--rare); border-radius: 8px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .redflag-card:hover { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-left-color: var(--primary); }
  .redflag-card h3 { margin-top: 0; color: var(--primary); font-size: 1.3rem; display: flex; align-items: center; }
  .redflag-card h3::before { content: '🚩'; margin-right: 10px; font-size: 1.2rem; }

  /* Lists & Checklists */
  .checklist { list-style: none; padding: 0; margin: 30px 0; }
  .checklist li {
    position: relative; padding-left: 36px; margin-bottom: 16px; font-size: 1.1rem; line-height: 1.6;
  }
  .checklist li::before {
    content: '✅'; position: absolute; left: 0; top: 0; font-size: 1.2rem;
  }
  
  ol { padding-left: 24px; margin-bottom: 30px; }
  ol li { margin-bottom: 15px; font-size: 1.1rem; padding-left: 8px; }
  ol li strong { color: var(--primary); }

  /* Comparison Table */
  .table-responsive { overflow-x: auto; margin: 30px 0; border-radius: 10px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); border: 1px solid var(--border-color); }
  .compare-table { width: 100%; min-width: 600px; border-collapse: collapse; text-align: left; background: #fff; }
  .compare-table th { background-color: var(--primary); color: #fff; padding: 18px; font-size: 1.1rem; font-weight: 600; border-bottom: 2px solid #002244; }
  .compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border-color); font-size: 1.05rem; }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:nth-child(even) { background-color: var(--bg-light); }
  .td-fake { color: #991b1b; }
  .td-legit { color: var(--secondary); font-weight: 500; }

  /* CTA Block */
  .cta-block { background: var(--primary); color: #fff; text-align: center; padding: 40px 30px; border-radius: 16px; margin: 50px 0; position: relative; overflow: hidden; }
  .cta-block::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 60%); pointer-events: none;
  }
  .cta-block h2 { color: #fff; margin-top: 0; border: none; font-size: 2rem; }
  .cta-block p { font-size: 1.15rem; margin-bottom: 30px; color: #cbd5e1; }
  .cta-btn { display: inline-block; background-color: var(--secondary); color: #fff !important; padding: 16px 32px; border-radius: 50px; font-size: 1.2rem; font-weight: 700; text-decoration: none !important; border: none !important; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,124,48,0.4); }
  .cta-btn:hover { background-color: #00993b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,124,48,0.6); }
  .cta-note { font-size: 0.9rem !important; margin-top: 15px !important; margin-bottom: 0 !important; opacity: 0.8; }

  /* FAQs Accordion */
  .faq-section { margin-top: 50px; }
  .faq-item { border: 1px solid var(--border-color); margin-bottom: 12px; border-radius: 8px; background: #fff; overflow: hidden; }
  .faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 18px 24px; font-size: 1.15rem; font-weight: 700; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; font-family: inherit;
  }
  .faq-question:hover { background: var(--bg-light); }
  .faq-question::after { content: '+'; font-size: 1.5rem; color: var(--secondary); font-weight: 400; transition: transform 0.3s ease; }
  .faq-question[aria-expanded="true"]::after { content: '−'; transform: rotate(180deg); }
  .faq-question[aria-expanded="true"] { background: var(--bg-light); border-bottom: 1px solid var(--border-color); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
  .faq-answer-inner { padding: 20px 24px; font-size: 1.05rem; }
  .faq-answer p { margin: 0; }

  @media (max-width: 768px) {
    .mbbs-blog-container { padding: 15px; }
    .hero-intro { font-size: 1.1rem !important; }
    .cta-block { padding: 30px 20px; }
    .cta-btn { padding: 14px 24px; font-size: 1.1rem; width: 100%; box-sizing: border-box; }
    .compare-table td, .compare-table th { padding: 12px; font-size: 0.95rem; }
  }/* End custom CSS */