.elementor-4648 .elementor-element.elementor-element-bf805b0{--display:flex;}/* Start custom CSS for html, class: .elementor-element-35d6a87 */:root {
    --primary-color: #003567;
    --secondary-color: #007c30;
    --rare-color: #a97800;
    --text-color: #0f172a; /* Soft black for better readability */
    --text-light: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }

  /* BASE STYLES */
  .article-body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
    background-color: var(--bg-light); /* Medical clean background */
    padding: 2rem 1rem;
    margin: 0;
  }

  .article-body .container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
  }

  /* TYPOGRAPHY */
  .article-body h1, .article-body h2, .article-body h3, .article-body h4 {
    color: var(--primary-color);
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .article-body h1 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }

  .article-body h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
  }

  .article-body h3 { font-size: 1.4rem; }
  
  .article-body p { margin-bottom: 1.5rem; }

  .article-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
  }

  .article-body a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
  }

  /* HERO SECTION */
  .hero-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--rare-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(169, 120, 0, 0.2);
  }

  .hero h1 em {
    color: var(--secondary-color);
    font-style: normal;
  }

  /* IMAGES */
  .featured-image-wrap, .inline-img {
    margin: 2rem 0;
  }
  
  .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
  }

  .article-body figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.8rem;
    font-style: italic;
  }

  /* TABLE OF CONTENTS */
  .toc-container {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .toc-list li { margin-bottom: 0.5rem; }

  .toc-list a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 4px 0;
  }

  .toc-list a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
  }

  /* BANNERS & BOXES */
  .update-banner {
    display: flex;
    gap: 15px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-left: 4px solid var(--primary-color);
    padding: 1.2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
  }
  
  .update-banner .icon { font-size: 1.5rem; }
  .update-banner p { margin: 0; font-size: 0.95rem; }

  .box {
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
  }
  .box p:last-child { margin-bottom: 0; }
  
  .box-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.8rem !important;
  }

  .box-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid var(--secondary-color);
  }
  .box-info .box-title { color: var(--secondary-color); }

  .box-warn {
    background: #fefce8;
    border: 1px solid #fef08a;
    border-left: 4px solid var(--rare-color);
  }
  .box-warn .box-title { color: var(--rare-color); }

  .box-red {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #dc2626;
  }
  .box-red .box-title { color: #dc2626; }

  /* GRID CARDS (Updates) */
  .rule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .rule-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
  }

  .rule-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
  
  .rule-card-num {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem !important;
  }

  .rule-card h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
  }

  .rule-card p:last-child { margin-bottom: 0; font-size: 0.95rem; }

  /* TABLES */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .compare-table th, .compare-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }

  .compare-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
  }

  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tbody tr:hover { background-color: var(--bg-light); }
  
  .td-yes { color: var(--secondary-color); font-weight: 600; }
  .td-chg { color: var(--rare-color); font-weight: 600; }

  /* LISTS */
  .checklist {
    list-style: none;
    padding: 0;
  }
  
  .checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
  }

  .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
  }

  .step-list {
    padding-left: 1.2rem;
    margin-bottom: 2rem;
  }

  .step-list li { margin-bottom: 1rem; padding-left: 0.5rem; }
  .step-list li::marker { color: var(--primary-color); font-weight: bold; }

  /* EXAM COMPARISON CARDS */
  .exam-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .exam-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }

  .exam-card.fmge { border-top: 4px solid var(--primary-color); }
  .exam-card.next { border-top: 4px solid var(--secondary-color); }

  .exam-card h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .badge {
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
  }
  .exam-card.next .badge { background: #dcfce7; color: var(--secondary-color); }

  .exam-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .exam-card li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    gap: 8px;
  }

  /* LEAD MAGNET & CTA */
  .lead-magnet, .cta-secondary {
    background: linear-gradient(135deg, var(--primary-color), #004d96);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 25px rgba(0, 53, 103, 0.2);
  }

  .cta-secondary {
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
  }

  .lead-magnet h2, .cta-secondary h3 { color: inherit; margin-top: 0; border: none; }
  .lead-magnet h2 { font-size: 1.8rem; color: var(--white); }

  .lm-btn, .cta-secondary a {
    display: inline-block;
    background: var(--rare-color);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
  }

  .cta-secondary a { background: var(--secondary-color); }

  .lm-btn:hover, .cta-secondary a:hover {
    background: #8b6300;
    transform: translateY(-2px);
  }
  .cta-secondary a:hover { background: #006326; }

  .lm-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
  }

  /* FAQ ACCORDION */
  .faq-section { margin-top: 3rem; }
  
  .faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    background: var(--white);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .faq-question:hover { background: var(--bg-light); }

  .faq-question::after {
    content: "+";
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after { transform: rotate(45deg); }
  .faq-item.active .faq-question { border-bottom: 1px solid var(--border-color); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
    max-height: 1000px; /* arbitrary large value for transition */
  }

  .faq-answer p:last-child { margin-bottom: 0; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .article-body { padding: 1rem 0; }
    .article-body .container { padding: 1.5rem; border-radius: 0; box-shadow: none; }
    .article-body h1 { font-size: 2rem; }
    .lead-magnet, .cta-secondary { padding: 1.5rem; }
    .exam-compare { grid-template-columns: 1fr; }
  }/* End custom CSS */