    .accordion,
    .accordion-body,
    .profile-card 
    {
      overflow: visible !important;
    }
    
    /* Floating Button (bottom-left) */
    #accessibility-btn 
    {
      position: fixed !important;
      bottom: 20px;
      left: 20px;
      width: 55px;
      height: 55px;
      background: #0a1a5e;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 35px;
      cursor: pointer;
      z-index: 9999;
    }
    
    /* Panel (hidden by default) */
    #accessibility-panel 
    {
      position: fixed !important;
      top: 0;
      right: -400px; /* hidden */
      width: 350px;
      height: 100vh;
      background: #0a1a5e;
      color: #fff;
      transition: right 0.3s ease;
      z-index: 9999;
      display: flex;
      flex-direction: column;
    }
    
    /* Active state */
    #accessibility-panel.active 
    {
      right: 0;
    }
    
    /* Header */
    .panel-header 
    {
      display: flex;
      justify-content: space-between;
      padding: 15px;
      background: #081447;
      font-weight: bold;
    }
    
    /* Content */
    .panel-content 
    {
      padding: 15px;
      overflow-y: auto;
    }
    
    /* Accordion */
    .accordion 
    {
      margin-bottom: 12px;
      background: #f1f1f1;
      color: #000;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .accordion-header 
    {
      padding: 12px;
      cursor: pointer;
      font-weight: 600;
    }
    
    .accordion-body 
    {
      display: none;
      padding: 10px;
      background: #fff;
    }
    
    /* Open state */
    .accordion.active .accordion-body 
    {
      display: block;
    }
    
    /* When panel is on left */
    #accessibility-panel.left 
    {
      left: 0;
      right: auto;
    }
    
    /* Default hidden left */
    #accessibility-panel.left 
    {
      left: -400px;
    }
    
    /* Active left */
    #accessibility-panel.left.active 
    {
      left: 0;
    }
    
    /* Move button when left */
    #accessibility-btn.right 
    {
      left: auto;
      right: 20px;
    }
    #accessibility-panel .form-label 
    {
      color: #fff;
    }
    
    #accessibility-panel .form-select 
    {
      background-color: #fff;
      color: #000;
    }
    /* Grid layout */
    .profiles-grid 
    {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    
    /* Card */
    .profile-card 
    {
      position: relative;
      background: #f5f6fa;
      border: 1px solid #dcdde1;
      border-radius: 12px;
      padding: 20px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    /* Hover effect */
    .profile-card:hover 
    {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    /* Icon box */
    .profile-card .icon 
    {
      width: 60px;
      height: 60px;
      margin: 0 auto 10px;
      border: 1px solid #ccc;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      background: #fff;
    }
    
    /* Title */
    .profile-card .title 
    {
      font-weight: 600;
      font-size: 14px;
      color: #000;
    }
    
    /* Info icon (top-right circle) */
    .profile-card .info-icon 
    {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 26px;
      height: 26px;
      background: #0a1a5e;
      color: #fff;
      border-radius: 50%;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Tooltip container */
    .info-icon 
    {
      position: relative;
      cursor: pointer;
    }
    
    /* Tooltip text */
    .tooltip-text 
    {
      position: absolute;
      top: 35px;
      right: 0;
      width: 220px;
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 8px;
      border-radius: 6px;
      display: none;
      z-index: 10000;
      text-align: left;
    }
    
    /* Show on hover */
    .info-icon:hover .tooltip-text 
    {
      display: block;
    }
    
     /* Selected card */
    .profile-card.active 
    {
      border: 2px solid #0a1a5e;
      background: #eef2ff;
    }
    
    /* Smooth transition */
    .profile-card 
    {
      transition: all 0.2s ease;
    }
    
    /* Disable all animations */
    .access-disable-animations *,
    .access-disable-animations *::before,
    .access-disable-animations *::after {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }
    /* Increase color saturation */
    .access-high-saturation {
      filter: saturate(1.6);
    }
    
    /* Dyslexia-friendly font */
    .access-dyslexia-font {
      font-family: 'OpenDyslexic', Arial, sans-serif !important;
    }
    /* Bigger text */
        .access-large-text {
          font-size: 18px !important;
          line-height: 1.7 !important;
        }
        
    /* Bigger cursor */
    .access-large-cursor,
    .access-large-cursor * {
      cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), auto !important;
    }
    
    /* Reduce saturation + soften brightness */
    .access-low-saturation {
      filter: saturate(0.5) brightness(0.9);
    }
    
    /* Reading ruler */
    #reading-ruler {
      position: fixed;
      left: 0;
      width: 100%;
      height: 100vh;
      /*background: rgba(0, 0, 255, 0.70);*/
      pointer-events: none;
      z-index: 9998;
      display: none;
      
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 255, 0.9) 0%,
        rgba(0, 0, 255, 0.9) 35%,
    
        rgba(0, 0, 0, 0) 35%,
        rgba(0, 0, 0, 0) 65%,
    
        rgba(0, 0, 255, 0.9) 65%,
        rgba(0, 0, 255, 0.9) 100%
      );
      
      
    }
    
    /* Grid */
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    
    /* Card */
    .content-control {
      background: #f5f6fa;
      border: 1px solid #dcdde1;
      border-radius: 10px;
      padding: 15px 10px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    /* Hover */
    .content-control:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    /* Icon */
    .content-control .icon {
      font-size: 20px;
      margin-bottom: 8px;
    }
    
    /* Label */
    .content-control .label {
      font-size: 13px;
      font-weight: 600;
    }
    
    /* Active state (we'll use later) */
    .content-control.active {
      border: 2px solid #0a1a5e;
      background: #eef2ff;
    }
    
    /* Dots container */
    .dots {
      display: flex;
      justify-content: center;
      margin-top: 8px;
      gap: 6px;
    }
    
    /* Dot */
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    
    /* Active dot */
    .dot.active {
      background: #0a1a5e;
      transform: scale(1.2);
    }
    
    /* Text size levels */
    .access-text-size-1 {
      font-size: 120% !important;
      zoom: 1.1;
    }
    
    .access-text-size-2 {
      font-size: 135% !important;
      zoom: 1.2;
    }
    
    .access-text-size-3 {
      font-size: 150% !important;
      zoom: 1.3;
    }
    
    /* Line height levels */
    .access-line-height-1 {
      line-height: 1.8;
    }
    
    .access-line-height-2 {
      line-height: 2.1;
    }
    
    .access-line-height-3 {
      line-height: 2.6;
    }
    
    /* Letter spacing levels */
    .access-letter-spacing-1 {
      letter-spacing: 2.5px;
    }
    
    .access-letter-spacing-2 {
      letter-spacing: 3.5px;
    }
    
    .access-letter-spacing-3 {
      letter-spacing: 4px;
    }
    
    /* Underline all links */
    .access-underline-links a {
      text-decoration: underline !important;
      text-underline-offset: 3px;
    }
    
    .access-underline-links a {
      text-decoration: underline !important;
      text-underline-offset: 3px;
      font-weight: 600;
    }
    
    /* Saturation levels */
    .access-saturation-1 {
      filter: saturate(2);
    }
    
    .access-saturation-2 {
      filter: saturate(2.5);
    }
    
    .access-saturation-3 {
      filter: saturate(3);
    }
    
    /* High contrast */
    .access-high-contrast {
      filter: contrast(2.4);
    }
    
    /* Invert colors */
    .access-invert-colors {
      filter: invert(1) hue-rotate(180deg);
    }
    
    .access-large-cursor,
    .access-large-cursor * {
      cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), auto !important;
    }
    
    .access-hide-media img,
        .access-hide-media video {
          display: none !important;
        }
    
    
