.elementor-1890 .elementor-element.elementor-element-b95291e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a560a88 */:root {
    --mc-primary: #f22283;   /* Pink/Magenta */
    --mc-secondary: #1f3d9d; /* Deep Blue */
    --mc-rare: #119809;      /* Green */
    --mc-bg-white: #ffffff;
    --mc-bg-medical: #f4f8fc;
    --mc-text-main: #333333;
    --mc-text-muted: #666666;
    --mc-border: #e2e8f0;
  }

  /* Scoped Wrapper to prevent theme conflicts */
  .medigo-blog-wrapper {
    font-family: inherit;
    color: var(--mc-text-main);
    line-height: 1.8;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: 17px;
  }

  .medigo-blog-wrapper * {
    box-sizing: border-box;
  }

  /* Base Typography */
  .medigo-blog-wrapper h1, 
  .medigo-blog-wrapper h2, 
  .medigo-blog-wrapper h3, 
  .medigo-blog-wrapper h4 {
    color: var(--mc-secondary);
    font-weight: 700;
    margin-top: 0;
  }

  .medigo-blog-wrapper h1 {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .medigo-blog-wrapper .subtitle {
    font-size: 18px;
    color: var(--mc-text-muted);
    font-style: italic;
    margin-bottom: 30px;
  }

  .medigo-blog-wrapper h2 {
    font-size: clamp(22px, 3vw, 28px);
    border-bottom: 3px solid var(--mc-bg-medical);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
  }

  .medigo-blog-wrapper h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background: var(--mc-primary);
  }

  .medigo-blog-wrapper h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    margin: 30px 0 15px;
    color: var(--mc-secondary);
  }

  .medigo-blog-wrapper p {
    margin-bottom: 20px;
  }

  .medigo-blog-wrapper a {
    color: var(--mc-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }

  .medigo-blog-wrapper a:hover {
    color: var(--mc-secondary);
    text-decoration: underline;
  }

  /* Sections (Hover Cards) */
  .medigo-section {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    background: var(--mc-bg-white);
    border: 1px solid var(--mc-border);
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .medigo-section:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .medigo-section.bg-medical {
    background: var(--mc-bg-medical);
  }

  /* Images */
  .medigo-blog-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    display: block;
    margin: 20px 0 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .medigo-blog-wrapper .img-caption {
    text-align: center;
    font-size: 14px;
    color: var(--mc-text-muted);
    font-style: italic;
    margin-bottom: 25px;
  }

  /* Table of Contents */
  .medigo-toc {
    background: var(--mc-bg-medical);
    border: 1px solid var(--mc-secondary);
  }
  
  .medigo-toc summary {
    font-size: 20px;
    font-weight: 700;
    color: var(--mc-secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .medigo-toc summary::-webkit-details-marker {
    display: none;
  }

  .medigo-toc ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
  }

  .medigo-toc ul li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
  }

  .medigo-toc ul li a {
    color: var(--mc-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .medigo-toc ul li a:hover {
    color: var(--mc-primary);
    text-decoration: none;
  }

  /* Lists & Checklists */
  .medigo-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
  }

  .medigo-steps li {
    position: relative;
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    background: var(--mc-bg-white);
    border-radius: 15px;
    border: 1px solid var(--mc-border);
    transition: box-shadow 0.3s ease;
  }

  .medigo-steps li:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }

  .medigo-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: var(--mc-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .medigo-checklist {
    list-style: none;
    padding: 0;
  }

  .medigo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--mc-bg-medical);
    border-radius: 15px;
  }

  .medigo-checklist li i {
    color: var(--mc-rare);
    font-size: 20px;
    margin-top: 4px;
  }

  /* Responsive Tables */
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .medigo-blog-wrapper table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: var(--mc-bg-white);
  }

  .medigo-blog-wrapper th {
    background: var(--mc-secondary);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
  }

  .medigo-blog-wrapper td {
    padding: 15px;
    border-bottom: 1px solid var(--mc-border);
    vertical-align: top;
  }

  .medigo-blog-wrapper tr:nth-child(even) {
    background: var(--mc-bg-medical);
  }

  .medigo-blog-wrapper tr:hover td {
    background: #eef2fb;
  }

  .badge-highlight {
    background: var(--mc-rare);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
    display: inline-block;
  }

  .badge-alert {
    background: var(--mc-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 8px;
    display: inline-block;
  }

  /* Grid Cards */
  .medigo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
  }

  .medigo-card {
    background: var(--mc-bg-white);
    border: 1px solid var(--mc-border);
    border-top: 4px solid var(--mc-secondary);
    border-radius: 15px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
  }

  .medigo-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top-color: var(--mc-primary);
  }

  /* Highlight Box (NexCAR19) */
  .medigo-highlight-box {
    background: linear-gradient(135deg, var(--mc-secondary) 0%, #2a52be 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(31, 61, 157, 0.2);
  }

  .medigo-highlight-box h3 {
    color: #fff;
    margin-top: 0;
    border: none;
  }

  .medigo-highlight-box p {
    color: rgba(255,255,255,0.9);
  }

  .tag-pill {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px 5px 0 0;
    backdrop-filter: blur(5px);
  }

  /* FAQ Accordion */
  .medigo-faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid var(--mc-border);
    overflow: hidden;
    background: var(--mc-bg-white);
    transition: box-shadow 0.3s ease;
  }

  .medigo-faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }

  .medigo-faq-btn {
    width: 100%;
    background: var(--mc-bg-medical);
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--mc-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .medigo-faq-btn:hover {
    background: #e6eff8;
  }

  .medigo-faq-btn i {
    color: var(--mc-primary);
    transition: transform 0.3s ease;
  }

  .medigo-faq-btn.active i {
    transform: rotate(180deg);
  }

  .medigo-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
  }

  .medigo-faq-content p {
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid var(--mc-border);
  }

  /* Timeline */
  .medigo-timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
  }

  .medigo-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mc-bg-medical);
  }

  .medigo-timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--mc-bg-white);
    border: 1px solid var(--mc-border);
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
  }

  .medigo-timeline-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .medigo-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 25px;
    width: 15px;
    height: 15px;
    background: var(--mc-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--mc-primary);
  }

  .tl-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--mc-primary);
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  /* Call To Action */
  .medigo-cta-block {
    background: var(--mc-bg-medical);
    border: 2px dashed var(--mc-secondary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    transition: box-shadow 0.3s ease;
  }

  .medigo-cta-block:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: #eef2fb;
  }

  .medigo-cta-btn {
    display: inline-block;
    background: var(--mc-primary);
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 15px;
  }

  .medigo-cta-btn:hover {
    background: var(--mc-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 61, 157, 0.3);
  }

  /* Related Links */
  .medigo-related {
    list-style: none;
    padding: 0;
  }
  .medigo-related li {
    margin-bottom: 12px;
  }
  .medigo-related li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    background: var(--mc-bg-medical);
    transition: all 0.3s ease;
  }
  .medigo-related li a:hover {
    background: var(--mc-secondary);
    color: #fff;
    padding-left: 15px;
  }/* End custom CSS */