  /* Scoped Container Variables */
  .gsh-wrapper {
    --gsh-primary-glow: #3b82f6;
    --gsh-secondary-glow: #8b5cf6;
    --gsh-accent: #06b6d4;
    --gsh-bg: #020617;
    --gsh-text: #f8fafc;
    --gsh-text-muted: #cbd5e1;
    --gsh-font: 'Outfit', system-ui, -apple-system, sans-serif;
    
    /* Layout Reset for this container */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    background: transparent;
    box-sizing: border-box;
  }

  /* Reset children to use border-box */
  .gsh-wrapper * {
    box-sizing: border-box;
    font-family: var(--gsh-font);
    margin: 0;
    padding: 0;
  }

  /* BANNER CONTAINER */
  .gsh-banner {
    width: 100%;
    max-width: 1300px;
    border-radius: 32px;
    padding: 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-color: var(--gsh-bg);
    box-shadow: 0 30px 60px -12px rgba(2, 6, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Ambient Blobs */
  .gsh-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: gsh-pulse 10s infinite alternate;
    pointer-events: none;
  }

  .gsh-blob-1 {
    background: radial-gradient(circle, var(--gsh-primary-glow), transparent 70%);
    top: -200px;
    right: -100px;
  }

  .gsh-blob-2 {
    background: radial-gradient(circle, var(--gsh-secondary-glow), transparent 70%);
    bottom: -200px;
    left: -100px;
    animation-delay: -5s;
  }

  @keyframes gsh-pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.6; }
  }

  /* Texture Overlay */
  .gsh-texture {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  .gsh-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
  }

  /* LEFT CONTENT */
  .gsh-content {
    max-width: 520px;
    width: 100%;
  }

  .gsh-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .gsh-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--gsh-text-muted);
    margin-bottom: 36px;
    max-width: 460px;
    font-weight: 400;
  }

  .gsh-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #0f172a;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    white-space: nowrap;
  }

  .gsh-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  }

  /* RIGHT STACK */
  .gsh-visual {
    position: relative;
    width: 320px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .gsh-stack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
  }

  .gsh-card {
    position: absolute;
    left: 50%;
    top: 50%;
    /* Glassmorphism */
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    
    padding: 18px 36px;
    border-radius: 20px;
    font-size: 19px;
    font-weight: 600;
    color: var(--gsh-text);
    text-align: center;
    white-space: nowrap;
    
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    pointer-events: none;
    width: 220px;
  }

  .gsh-card::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gsh-accent);
    box-shadow: 0 0 10px var(--gsh-accent);
  }

  /* Card States */
  .gsh-card.gsh-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    z-index: 10;
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 0 20px rgba(56, 189, 248, 0.05);
  }

  .gsh-card.gsh-prev {
    opacity: 0.3;
    transform: translate(-50%, -140%) scale(0.85) rotateX(40deg);
    z-index: 5;
    filter: blur(2px);
  }

  .gsh-card.gsh-next {
    opacity: 0.3;
    transform: translate(-50%, 40%) scale(0.85) rotateX(-40deg);
    z-index: 5;
    filter: blur(2px);
  }

  /* --- RESPONSIVE MEDIA QUERIES --- */

  /* Tablet / Small Laptop (900px and down) */
  @media (max-width: 900px) {
    .gsh-banner {
      padding: 50px 30px;
      border-radius: 24px;
    }

    .gsh-inner {
      flex-direction: column;
      text-align: center;
      gap: 50px;
    }

    .gsh-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 100%;
    }

    .gsh-title {
      font-size: 38px;
    }

    .gsh-desc {
      margin: 0 auto 32px auto;
      max-width: 500px;
    }

    .gsh-visual {
      width: 100%;
      height: 260px; /* Adjusted height for stack */
    }
    
    .gsh-card {
      font-size: 17px;
      width: 200px;
    }
  }

  /* Mobile (480px and down) */
  @media (max-width: 480px) {
    .gsh-wrapper {
        padding: 10px; /* Minimal padding on the sides */
    }
    
    .gsh-banner {
      padding: 40px 20px;
      border-radius: 20px;
    }

    .gsh-title {
      font-size: 28px; /* Significantly smaller for mobile */
      line-height: 1.2;
    }

    .gsh-desc {
      font-size: 15px;
      line-height: 1.5;
    }
    
    .gsh-visual {
      height: 220px;
      margin-top: 10px;
    }
    
    /* Adjust perspective for smaller screens */
    .gsh-stack {
       perspective: 800px;
    }

    .gsh-card {
      padding: 12px 20px;
      width: 160px; /* Fit on narrow screens */
      font-size: 15px;
      border-radius: 14px;
    }

    /* Tighter animation logic for mobile to prevent overflow */
    .gsh-card.gsh-prev {
      transform: translate(-50%, -150%) scale(0.75) rotateX(30deg);
    }
    .gsh-card.gsh-next {
      transform: translate(-50%, 50%) scale(0.75) rotateX(-30deg);
    }
    
    .gsh-cta-btn {
        width: 100%; /* Full width button on mobile */
        max-width: 100%;
        padding: 14px 20px;
    }
  }










    /* Scoped ID to prevent conflicts with your existing styles */
  #mega-menu-isolated {
    /* Component Variables */
    --imm-color-text: #111827;
    --imm-color-muted: #6b7280;
    --imm-color-border: #e5e7eb;
    --imm-gradient: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    --imm-header-height: 70px; /* Update this to match your real navbar height */
    
    font-family: 'Inter', sans-serif;
    display: inline-block;
  }

  /* Reset for this component only */
  #mega-menu-isolated * { box-sizing: border-box; }

  /* Wrapper */
  #mega-menu-isolated .learn-wrapper { position: relative; }

  /* Button Style */
  #mega-menu-isolated .btn-learn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #d1d5db;
    background-color: white;
    color: var(--imm-color-text);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 102;
  }

  /* Gradient Hover Effect */
  #mega-menu-isolated .btn-learn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--imm-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
  }

  #mega-menu-isolated .btn-learn:hover { color: white; border-color: transparent; }
  #mega-menu-isolated .btn-learn:hover::before { opacity: 1; }
  
  #mega-menu-isolated .arrow-icon { font-size: 0.65rem; transition: transform 0.2s; }
  #mega-menu-isolated .btn-learn:hover .arrow-icon { transform: rotate(180deg); color: white; }

  /* Dropdown Menu Base */
  #mega-menu-isolated .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--imm-color-border);
    z-index: 101;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  #mega-menu-isolated .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Desktop View */
  @media (min-width: 768px) {
    #mega-menu-isolated .dropdown-menu {
      position: absolute;
      top: 150%;
      left: 0;
      width: 600px; /* Card Width */
      border-radius: 1rem;
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
      padding: 2rem;
      transform: translateY(10px);
    }
    #mega-menu-isolated .grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    #mega-menu-isolated .border-left { border-left: 1px solid var(--imm-color-border); padding-left: 2rem; }
  }

  /* Mobile View */
  @media (max-width: 767px) {
    #mega-menu-isolated .dropdown-menu {
      position: fixed;
      top: var(--imm-header-height);
      left: 0; right: 0;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      border-radius: 0 0 1rem 1rem;
      box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
      padding: 1.5rem;
      transform: translateY(-10px);
    }
    #mega-menu-isolated .grid-layout { display: flex; flex-direction: column; gap: 2rem; }
    #mega-menu-isolated .border-left { border-top: 1px solid var(--imm-color-border); padding-top: 2rem; }
  }

  /* Content Styling */
  #mega-menu-isolated .menu-item { display: flex; gap: 1rem; cursor: pointer; padding: 0.55rem; border-radius: 0.75rem; margin: -0.75rem 0; }
  #mega-menu-isolated .menu-item:hover { background-color: #f9fafb; }
  #mega-menu-isolated .item-img { width: 5rem; height: 4rem; object-fit: cover; border-radius: 0.5rem; }
  #mega-menu-isolated .item-title { font-weight: 600; font-size: 0.875rem; color: var(--imm-color-text); margin: 0; }
  #mega-menu-isolated .menu-item:hover .item-title { color: #2563eb; }
  #mega-menu-isolated .item-desc { font-size: 0.75rem; color: var(--imm-color-muted); margin: 0.25rem 0 0 0; }
  #mega-menu-isolated h3 { margin: 0 0 0.5rem 0; font-size: 1.125rem; font-weight: 600; color: var(--imm-color-text); }
  #mega-menu-isolated p.desc { margin: 0 0 1.5rem 0; font-size: 0.875rem; color: var(--imm-color-muted); }



  /* =========================================
     OBJECTIVE SECTION
     Prefix: obj-
     ========================================= */
  
  .obj-section {
    /* Theme Variables */
    --obj-bg-main: #ffffff;
    --obj-card-bg: #0f172a; /* Dark Slate */
    --obj-card-hover: #1e293b;
    --obj-accent: #6d5cff;
    --obj-text-head: #0f172a;
    --obj-text-body: #64748b;
    --obj-text-light: #f8fafc;
    --obj-text-muted: #94a3b8;
    
    font-family: 'Inter', sans-serif;
    background-color: var(--obj-bg-main);
    padding: 100px 5%;
    overflow: hidden;
  }

  .obj-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* --- HEADER --- */
  .obj-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
  }

  .obj-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--obj-accent);
    margin-bottom: 16px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(109, 92, 255, 0.1);
    border-radius: 100px;
  }

  .obj-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--obj-text-head);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .obj-desc {
    font-size: 18px;
    color: var(--obj-text-body);
    line-height: 1.6;
  }

  /* --- GRID --- */
  .obj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- CARD DESIGN --- */
  .obj-card {
    background-color: var(--obj-card-bg);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    z-index: 1;
  }

  /* Hover State */
  .obj-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.3);
  }

  /* Gradient Glow Effect on Hover */
  .obj-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(109,92,255,0.1) 0%, rgba(59,130,246,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .obj-card:hover::before {
    opacity: 1;
  }

  /* Icon Circle */
  .obj-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .obj-card:hover .obj-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(109, 92, 255, 0.2);
    border-color: rgba(109, 92, 255, 0.3);
  }

  /* Text Content */
  .obj-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--obj-text-light);
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .obj-card-desc {
    font-size: 15px;
    color: var(--obj-text-muted);
    line-height: 1.6;
  }

  /* Top Right Decorative Accent */
  .obj-decor {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(109,92,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
  }
  
  .obj-card:hover .obj-decor {
    transform: scale(1.5);
  }

  /* --- RESPONSIVE --- */
  
  /* Tablet: 2 Columns */
  @media (min-width: 769px) and (max-width: 992px) {
    .obj-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile: Vertical Stack (Standard) */
  @media (max-width: 768px) {
    .obj-section {
      padding: 60px 20px; /* Standard Padding */
    }
    
    .obj-header {
      padding: 0;
      margin-bottom: 40px;
    }

    .obj-title { 
      font-size: 32px; 
    }

    .obj-grid {
      display: grid; /* Keep as grid */
      grid-template-columns: 1fr; /* 1 Column */
      gap: 20px; /* Space between stacked cards */
    }

    .obj-card {
      /* Remove any specific widths used for horizontal scroll */
      min-width: auto; 
    }
  }




        /* way choose us */
    /* =========================================
       WHY CHOOSE US SECTION
       ID: #wcu-section
       ========================================= */

    #wcu-section {
        /* Variables */
        --wcu-bg: #ffffff;
        --wcu-text-main: #111827;
        --wcu-text-muted: #6b7280;
        --wcu-primary: #7c3aed; /* Purple Accent */
        --wcu-border: #e5e7eb;
        --wcu-dark-bg: #1e1b4b; /* Dark Purple for center card */
        
        background-color: var(--wcu-bg);
        padding: 80px 5%;
        font-family: 'Inter', sans-serif;
        color: var(--wcu-text-main);
    }

    #wcu-section * {
        box-sizing: border-box;
    }

    /* Header */
    #wcu-section .wcu-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }

    #wcu-section .wcu-eyebrow {
        color: var(--wcu-primary);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.875rem;
        margin-bottom: 12px;
        display: block;
    }

    #wcu-section .wcu-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 16px 0;
        line-height: 1.2;
    }

    #wcu-section .wcu-subtitle {
        color: var(--wcu-text-muted);
        font-size: 1.125rem;
        line-height: 1.6;
    }

    /* --- TABLE CONTAINER --- */
    #wcu-section .wcu-scroll-wrapper {
        width: 100%;
        /* Padding to allow space for the pop-out shadow/scale */
        padding: 40px 10px; 
    }

    /* The Grid Table */
    #wcu-section .wcu-grid {
        display: grid;
        /* Responsive Grid */
        grid-template-columns: 1fr 1.2fr 1fr;
        margin: 0 auto;
        max-width: 1100px;
        /* Removed overflow hidden and border to allow pop-out */
        align-items: center; 
    }

    /* --- COLUMNS --- */
    
    /* 1. Feature Column */
    #wcu-section .wcu-col-features {
        background: #fff;
        border: 1px solid var(--wcu-border);
        border-right: none; /* Merge with center visually */
        border-radius: 16px 0 0 16px;
        z-index: 1;
    }

    /* 2. Our Course Column (Highlighted & 3D) */
    #wcu-section .wcu-col-us {
        background: var(--wcu-dark-bg); /* Dark Color */
        color: #ffffff; /* White Text */
        position: relative;
        border-radius: 16px;
        /* 3D Transform & Shadow */
        transform: scale(1.08); 
        box-shadow: 0 25px 50px -12px rgba(91, 45, 216, 0.4);
        z-index: 10; /* Bring to front */
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Recommended Badge (Floating Pill) */
    #wcu-section .wcu-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #ec4899, #8b5cf6);
        color: white;
        text-align: center;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 99px;
        letter-spacing: 1px;
        white-space: nowrap;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* 3. Others Column */
    #wcu-section .wcu-col-others {
        background: #f9fafb;
        color: var(--wcu-text-muted);
        border: 1px solid var(--wcu-border);
        border-left: none;
        border-radius: 0 16px 16px 0;
        z-index: 1;
    }

    /* --- ROWS --- */
    #wcu-section .wcu-cell {
        padding: 24px;
        border-bottom: 1px solid var(--wcu-border);
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        height: 80px; 
        line-height: 1.4;
    }

    /* Specific Styles for Dark Center Column Cells */
    #wcu-section .wcu-col-us .wcu-cell {
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle border for dark bg */
        color: #ffffff; /* Ensure text is white */
    }

    /* Header Cells */
    #wcu-section .wcu-cell.head {
        height: 100px;
        font-size: 1.25rem;
        font-weight: 700;
        align-items: flex-end;
        padding-bottom: 24px;
    }
    
    #wcu-section .wcu-col-us .wcu-cell.head {
        color: #ffffff; /* White Header */
        font-size: 1.5rem;
        padding-top: 40px; 
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    /* Alignment Utils */
    #wcu-section .wcu-col-features .wcu-cell {
        font-weight: 600;
        color: #374151;
    }

    #wcu-section .wcu-col-us .wcu-cell,
    #wcu-section .wcu-col-others .wcu-cell {
        justify-content: center;
        text-align: center;
    }
    
    /* Last row border removal */
    #wcu-section .wcu-cell:last-child {
        border-bottom: none;
    }

    /* Icons */
    #wcu-section .icon-check { color: #10b981; width: 24px; height: 24px; } /* Green check remains good on dark */
    #wcu-section .icon-cross { color: #ef4444; width: 24px; height: 24px; opacity: 0.6; }

    /* --- MOBILE & TABLET RESPONSIVENESS --- */
    @media (max-width: 900px) {
        #wcu-section { padding: 60px 3%; }
        
        #wcu-section .wcu-cell {
            padding: 15px 10px;
            font-size: 0.85rem;
        }
        
        #wcu-section .wcu-title { font-size: 2rem; }
    }

    @media (max-width: 600px) {
        #wcu-section .wcu-grid {
            width: 100%;
            grid-template-columns: 0.9fr 1.2fr 0.9fr; 
        }

        #wcu-section .wcu-cell {
            padding: 10px 4px; 
            font-size: 11px;
            height: auto; 
            min-height: 60px; 
            flex-direction: column; 
            justify-content: center;
            text-align: center;
            word-wrap: break-word;
        }

        #wcu-section .wcu-cell.head {
            font-size: 12px;
            height: auto;
            min-height: 70px;
            padding-bottom: 10px;
            align-items: center;
            justify-content: center;
        }

        #wcu-section .wcu-col-features .wcu-cell {
            text-align: center;
            justify-content: center;
        }

        #wcu-section .wcu-col-us .wcu-cell.head {
            font-size: 13px;
            padding-top: 30px; 
        }

        #wcu-section .wcu-badge {
            font-size: 9px;
            padding: 4px 10px;
            letter-spacing: 0.5px;
            top: -10px;
        }

        #wcu-section .icon-check, 
        #wcu-section .icon-cross { 
            width: 16px; 
            height: 16px; 
        }
    }

    
              /* Scoped Root Styles */
        #grc-highlights {
            /* Component Variables */
            --grc-font: 'Inter', system-ui, -apple-system, sans-serif;
            --grc-bg: #FFFFFF;
            --grc-text-main: #1F2937;
            --grc-text-muted: #4B5563;
            --grc-primary: #2563EB;
            
            width: 100%;
            max-width: 1100px;
            background-color: var(--grc-bg);
            border-radius: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border: 1px solid #E5E7EB;
            margin: 0 auto;
            font-family: var(--grc-font);
            color: var(--grc-text-main);
            line-height: 1.6;
        }

        /* Local Reset */
        #grc-highlights *, 
        #grc-highlights *::before, 
        #grc-highlights *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Container */
        #grc-highlights .grc-container {
            padding: 3rem 2rem;
        }

        @media (min-width: 768px) {
            #grc-highlights .grc-container { padding: 4rem; }
        }

        /* Header Typography */
        #grc-highlights .grc-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem auto;
        }

        #grc-highlights .grc-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: #111827;
            letter-spacing: -0.025em;
        }

        #grc-highlights .grc-title strong {
            color: var(--grc-primary);
        }

        #grc-highlights .grc-subtitle {
            font-size: 1.125rem;
            color: var(--grc-text-muted);
            font-weight: 500;
        }

        /* Grid Layout */
        #grc-highlights .grc-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            #grc-highlights .grc-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem; 
            }
        }

        /* List Styles */
        #grc-highlights .grc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        #grc-highlights .grc-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 0.95rem;
            color: #374151;
        }

        /* Checkmark Badge - Using div instead of span */
        #grc-highlights .check-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.5rem;
            height: 1.5rem;
            background-color: #DCFCE7;
            color: #16A34A;
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        /* Text Wrapper */
        #grc-highlights .grc-text {
            flex: 1;
        }

        /* Bold emphasis */
        #grc-highlights strong {
            color: #111827;
            font-weight: 600;
        }

        /* Mobile Typography Adjustments */
        @media (max-width: 600px) {
            #grc-highlights .grc-title {
                font-size: 1.75rem;
            }
        }