    :root {
      --primary: #2563eb;
      --primary-hover: #1d4ed8;
      --primary-light: #eff6ff;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-body: #ffffff;
      --bg-surface: #ffffff;
      --border-color: #e2e8f0;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 28px -4px rgba(0,0,0,0.12);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    }

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


 /* MAIN SYSTEM CSS */
 /* MAIN SYSTEM CSS */
 /* MAIN SYSTEM CSS */   

    body {

      font-family: system-ui, sans-serif;

      line-height: 1.6;

      background: var(--bg-body);

      color: black;

      padding: 6px;

      
    }

    h1 {
      /* Min: 1.5rem, Preferred: 4vw, Max: 3rem */
      font-size: clamp(1rem, 3.5vw, 2.1rem);
      line-height: 1.3;
    }

    p {

      font-size: clamp(1rem, 0.929rem + 0.36vw, 1.125rem);
    }

    button{ 
      align-items: center;
      justify-content: center;
      padding: 4px 6px 4px 6px;

    }


/* DEFAULT: MOBILE (< 768px) */


    .content_grid_template{ 

      display:grid;grid-template-columns: repeat(auto-fit, minmax(min(210px, (100% - 10px) / 2), 1fr));gap: 3px; 

    }

    .content_block{ 

      border:1px solid #e6e6e6; display: flex; flex-direction: column;padding:10px 

    }

    .content_grid_single{ 

      display:grid; grid-template-columns: 1fr;gap: 3px; 

    }

    .content_block_single{ 

       padding:10px; 

    }

    .footer_grid_template{ 

      display:grid;grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2px; 

      }

    .footer_block{ display: flex; flex-direction: column;padding:3px; }


 

 .showhide{display: none;}

    .page-layout {

      display: grid;

      grid-template-columns: 1fr; 
      gap: 6px;



    }


    .sidebar {

      background: oklch(0.9 0.02 240);

      padding: 6px;

      border-radius: 6px;

    }


     footer {

      max-width: 1400px;

      margin: 0 auto;   

      background: var(--bg-body);

      padding: 3px;

      font-size: 12px;

      text-align: left;

    }


 img {

      width: 100%;

      height: auto;

    }

a{text-decoration: none; color:black;}

 ul,li{ list-style:none }   
}




 /*  TABLET (> 768px) */

@media (min-width: 768px) {
  
.page-layout {

  grid-template-columns: 250px 1fr; /* 2 columns */

}


.content_grid_single{ 

 grid-template-columns: repeat(2, 1fr);gap: 3px; 

}
     


.showhide{display: block;}

    
 }
 
 
/* DESKTOP (>=1200px ) */

@media (min-width: 1200px) {

.showhide{display: block;}

.page-layout {

        max-width: 1400px;

        margin: 0 auto; 

        grid-template-columns: 300px 1fr; /* Sidebar is larger a litter bit */

      }


.content_grid_single{ 

 grid-template-columns: repeat(2, 1fr);gap: 3px; 

}


}    
 
 

/* END MAIN SYSTEM CSS */
/* END MAIN SYSTEM CSS */
/* END MAIN SYSTEM CSS */


/* --------------------- MENU ----------------------*/
/* --------------------- MENU ----------------------*/
/* --------------------- MENU ----------------------*/

   .navbar {
      background-color: var(--bg-surface);
      border-bottom: 0px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-sm);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto; 
      padding: 0 1.5rem;
      height: 72px;
      display: flex;
      align-items: left;
      justify-content: space-between;
    }

    /* Brand Logo */
    .brand-logo {
      display: flex;
      align-items: left;
      gap: 0.75rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--text-dark);
    }

    .brand-icon {
      width: 150px;
      height: auto;
      
      border-radius: var(--radius-md);
      display: flex;
      align-items: left;
      justify-content: left;
      color: white;
    }

    .brand-tag {
      font-size: 0.7rem;
      background-color: var(--primary-light);
      color: var(--primary);
      padding: 2px 6px;
      border-radius: 4px;
      border: 1px solid #bfdbfe;
      margin-left: 4px;
      font-weight: 600;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0.5rem;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.6rem 1rem;
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    .nav-link:hover, .nav-link:focus {
      background-color: var(--primary-light);
      color: var(--primary);
    }

    .arrow-icon {
      width: 14px;
      height: 14px;
      fill: currentColor;
      transition: transform 0.25s ease;
    }

    /* Level 2 Dropdown */
    .dropdown-level-2 {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 230px;
      background-color: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 0.5rem;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      z-index: 100;
    }

    .nav-item.has-dropdown:hover > .dropdown-level-2,
    .nav-item.has-dropdown:focus-within > .dropdown-level-2 {
      opacity: 1;
      visibility: visible;
      transform: translateY(4px);
    }

    .nav-item.has-dropdown:hover > .nav-link .arrow-icon {
      transform: rotate(180deg);
    }

    /* Level 3 Dropdown */
    .dropdown-item {
      position: relative;
    }

    .dropdown-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.6rem 0.8rem;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      width: 100%;
      text-align: left;
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    .dropdown-link:hover, .dropdown-link:focus {
      background-color: var(--primary-light);
      color: var(--primary);
    }

    .dropdown-level-3 {
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 210px;
      background-color: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 0.5rem;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateX(10px);
      transition: var(--transition);
      z-index: 101;
      margin-left: 0.25rem;
    }

    .dropdown-item.has-dropdown:hover > .dropdown-level-3,
    .dropdown-item.has-dropdown:focus-within > .dropdown-level-3 {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .dropdown-item.has-dropdown:hover > .dropdown-link .side-arrow {
      transform: translateX(3px);
    }

    /* Right Action Buttons */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .btn-ghost {
      color: var(--text-dark);
      background: transparent;
    }

    .btn-ghost:hover {
      background-color: var(--bg-body);
    }

    .btn-primary {
      background-color: var(--primary);
      color: white;
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    }

    /* Hamburger Toggle Button */
    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
      color: var(--text-dark);
      border-radius: var(--radius-sm);
    }

    .hamburger-btn:hover {
      background-color: var(--bg-body);
    }

    .hamburger-icon {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    @media (max-width: 992px) {
      .hamburger-btn {
        display: block;
      }

      .nav-actions {
        display: none;
      }

      .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-surface);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 0.5rem;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
      }

      .nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav-link {
        justify-content: space-between;
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        background-color: var(--bg-body);
      }

      /* Mobile Accordions override */
      .dropdown-level-2, 
      .dropdown-level-3 {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--border-color);
        border-radius: 0;
        padding: 0 0 0 1rem;
        margin: 0.25rem 0 0.25rem 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
      }

      .dropdown-level-2.is-expanded,
      .dropdown-level-3.is-expanded {
        max-height: 500px;
        transition: max-height 0.5s ease-in;
      }

      .nav-item.has-dropdown:hover > .dropdown-level-2,
      .dropdown-item.has-dropdown:hover > .dropdown-level-3 {
        transform: none;
      }

      .arrow-icon.is-rotated {
        transform: rotate(180deg) !important;
      }

      .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
      }

      .mobile-actions .btn {
        width: 100%;
      }
    }

   
    }