/* filepath: d:\xampp\htdocs\offerengine\css\main.css */
        :root {
            --font-family-base: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
            --font-size-base: 16px;
            --line-height-base: 1.6;
            --color-text: #003323;
            --color-hover: #50d387;
            --color-heading: var(--color-hover);
            --color-bg: #f9fafd;
            --color-bg-light: #f5f5f5;
            --color-bg-alt: #fafafa;
            --color-border: #e0e0e0;
            --color-code: #30363d;
            --color-white: #fff;
            --color-dark: #1e1e1e;

            --sidebar-width: 220px;
            --toc-width: 220px;

            --base-font: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif, 
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            --base-line-height: 1.6;
            --base-color: #003323;
            --toc-hover-color: #50d387;
            --base-font-size: 16px;
            --hover-color: #50d387;

          /* Product Guide specific variables */
            --border: #e2e8f0;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --green-dark: #003434;
            --blue-bg: #eff6ff;
            --radius: 0.5rem;
            --gap: 1.5rem;
            --max-width: 1280px;
        }

        /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            margin: 0;
            font-family: var(--base-font);
            line-height: var(--base-line-height);
            background: #f9fafd;
            color: var(--color-text);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--base-font);
            color: var(--color-heading);
            line-height: 1.4;
            margin-top: 0;
        }

        h1 {
            font-size: 36px;
            color: #003323;
        }

        h2 {
            font-size: 28px;
            color: var(--hover-color);
        }

        h3 {
            font-size: 24px;
            color: var(--hover-color);
        }

        h4 {
            font-size: 20px;
            color: var(--hover-color);
        }

        h5 {
            font-size: 18px;
        }

        h6 {
            font-size: 16px;
        }
        .section-content{margin-top:70px;}
        /* Links */
        a {
            text-decoration: underline;
            color: var(--hover-color);
            font-family: var(--base-font);
        }

        a:hover {
            text-decoration: none;
            color: var(--hover-color);
        }

        a>code {
            color: var(--hover-color);
            background: none;
            font-family: var(--base-font);
            padding: 0;
            border: none;
        }

        /* Header */
        #header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--color-white);
            z-index: 1000;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
        }

        .img-fluid {
            max-width: 100%;
        }
        .logo img {
            height: 33px;
            width: auto;
        }
        /* Sidebar */
        .scrollspy-sidebar,
        .sidebar {
            position: sticky;
            top: 20px;
            left: 0;
            width: var(--sidebar-width);
            background: var(--color-bg);
            border-right: 1px solid var(--color-border);
            overflow-y: auto;
            padding: 1rem;
            font-weight: 400;
            height: auto;
        }

        .sidebar {
            height: calc(110vh - 90px);
            padding: 32px;
            width: 400px;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            margin-bottom: 12px;
            cursor: pointer;
        }

        .sidebar li:hover {
            color: #007b8f;
        }

        .sidebar .section-title {
            color: #4a4a4a;
            margin-bottom: 12px;
        }

        .sidebar .submenu {
            list-style: none;
            padding-left: 0;
        }

        .sidebar .submenu li {
            padding: 8px 12px;
            margin-bottom: 6px;
            border-radius: 6px;
        }

        .sidebar .submenu li a {
            text-decoration: none;
            color: #444;
            display: block;
        }

        .sidebar .submenu li:hover {
            background-color: #f3e5f5;
            color: #a020f0;
        }

        .sidebar .submenu li.active {
            background-color: #fbe9f7;
        }

        .sidebar .submenu li.active a {
            color: #bf45b3;
            font-weight: 500;
        }

        /* Layout */
        .wrapper {
            display: grid;
            grid-template-columns: 250px 1fr 250px;
            gap: 20px;
            padding: 20px;
            background-color: white;
            margin-left: var(--sidebar-width);
        }

        .main-section {
            display: flex;
            align-items: flex-start;
        }

        /* Content */
        .content,
        .main-content,
        .toc,
        .tab-pane {
            font-family: var(--base-font);
            line-height: var(--base-line-height);
            padding: 20px;
            color: var(--base-color);
        }

        .content {
            flex: 1;
            padding: 40px 100px 40px 40px;
        }

        .content h2,
        h3,
        h4,
        h5,
        h6 {
            color: #00b77a;
            margin-bottom: 32px;
            margin-top: 32px;
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
            border: 1px solid #d3d3d3;
            margin-bottom: 32px;
            font-family: var(--base-font);
        }

        th,
        td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            text-align: left;
            vertical-align: top;
            font-family: var(--base-font);
        }

        table th,
        table td {
            border: 1px solid #ececec;
            padding: 8px 12px;
        }

        th {
            background: #f4f4f4;
            font-weight: bold;
        }

        table th {
            background: #ececec;
        }

        tr:nth-child(even) {
            background: var(--color-bg-alt);
        }

        /* Code Styling */
        code {
            background: var(--color-bg-light);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: monospace;
            color: #30363d;
        }

        /* Code Tabs */
        .code-tabs {
            background: #1e1e1e;
            border-radius: 6px;
            font-family: monospace;
            border: 1px solid #30363d;
            box-shadow: 0 0 0 1px #21262d;
            margin: 4px 0 !important;
        }

        .code-tabs pre {
            margin: 0;
            padding: 20px !important;
            line-height: 1.4;
        }

        .tab-nav {
            display: flex;
            background: #1e1e1e;
            list-style: none;
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #30363d;
        }

        .tab-nav li {
            padding: 10px 16px;
            cursor: pointer;
            font-weight: 600;
            color: #ccc;
            font-family: var(--base-font);
        }

        .tab-nav li.active {
            color: #fff;
            border-bottom: 2px solid #58a6ff;
            background: #252526;
        }

        .tab-pane {
            display: none;
            background: #1e1e1e;
            color: #d4d4d4;
            white-space: pre-wrap;
        }

        .tab-pane.active {
            display: flex;
        }

        /* Syntax highlighting */
        .json-key {
            color: #569cd6;
        }

        .json-string {
            color: #00ce7d;
        }

        .json-number {
            color: #d0f255;
        }

        /* TOC */
        .main-content-toc {
            position: fixed;
            right: 20px;
            width: 220px;
            top: 100px;
            max-height: calc(110vh - 120px);
            overflow-y: auto;
            padding: 12px 16px;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            z-index: 999;
        }

        .main-content-toc .toc-heading {
            font-weight: 400;
            margin-bottom: 12px;
            font-size: 15px;
            color: #333;
        }

        .main-content-toc .toc-item {
            margin-bottom: 8px;
        }

        .main-content-toc .toc-item a {
            text-decoration: none;
            font-size: 15px;
            color: var(--base-color);
        }

        .main-content-toc .toc-item a:hover {
            color: var(--hover-color);
        }

        .main-content-toc .toc-item.level-2 {
            margin-left: 10px;
        }

        .main-content-toc .toc-item.level-3 {
            margin-left: 20px;
        }

        .main-content-toc .toc-item.level-4 {
            margin-left: 30px;
        }

        table.fixed-layout {
            width: 100%;
            font-size: 15px;
            table-layout: fixed;
            border: 1px solid #ccc;
        }

        table.fixed-layout th,
        table.fixed-layout td {
            padding: 12px;
            border: 1px solid #ccc;
            word-wrap: break-word;
            vertical-align: top;
            font-size: 15px;
        }

        table thead th {
            color: #333;
            font-weight: 600;
            font-size: 16px;
            padding: 12px 10px;
            text-align: center;
            border-bottom: 2px solid #ccc;
        }

        table.fixed-2col col:nth-child(1) {
            width: 25%;
        }

        table.fixed-2col col:nth-child(2) {
            width: 75%;
        }

        table.fixed-3col col:nth-child(1) {
            width: 30%;
        }

        table.fixed-3col col:nth-child(2) {
            width: 20%;
        }

        table.fixed-3col col:nth-child(3) {
            width: 50%;
        }

        /* Custom Tab Section */
        .custom-tab-section .custom-code-tabs {
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .custom-tab-section .custom-tab-nav {
            list-style: none;
            display: flex;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #ddd;
            background: #f9f9f9;
        }

        .custom-tab-section .custom-tab-nav li {
            padding: 10px 16px;
            cursor: pointer;
            border-right: 1px solid #ddd;
        }

        .custom-tab-section .custom-tab-nav li.active {
            background-color: #fff;
            font-weight: bold;
            border-bottom: 2px solid #007bff;
        }

        .custom-tab-section .custom-tab-content {
            padding: 16px;
        }

        .custom-tab-section .custom-tab-pane {
            display: none;
        }

        .custom-tab-section .custom-tab-pane.active {
            display: block;
        }

        .custom-tab-section .badge-required {
            background-color: #50d387;
            color: white;
            padding: 2px 6px;
            font-size: 11px;
            border-radius: 4px;
        }

        .icon-24 {
            height: 24px;
            width: 24px;
            object-fit: contain;
        }

        .footer-tnc,
        .footer-social-icons {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-size: 16px;
        }

        .footer-tnc {
            justify-content: flex-start;
            text-align: left;
        }

        .footer-social-icons {
            justify-content: flex-end;
            width: 100%;
        }

        .footer-tnc a,
        .footer-social-icons a {
            color: #fff !important;
            text-decoration: underline;
            transition: color 0.2s;
        }

        .footer-tnc a:hover,
        .footer-social-icons a:hover {
            color: #50D378 !important;
        }

        .footer-tnc span {
            padding: 0 5px;
        }

        @media (max-width: 1100px) {
          .sidebar {
            display: none !important;
          }
          .main-section, .wrapper {
            margin-left: 0 !important;
            grid-template-columns: 1fr !important;
            padding-left: 0 !important;
          }
        }

        @media (max-width: 900px) {
          .main-section {
            flex-direction: column;
            gap: 0;
          }
          .content {
            padding: 24px 10px 24px 10px !important;
          }
          .section-banner img {
            width: 100%;
            height: auto;
          }
          table {
            font-size: 12px;
          }
        }

        @media (max-width: 600px) {
          body {
            font-size: 14px;
          }
          .header_align, #header, .navbar {
            flex-direction: column !important;
            align-items: flex-start !important;
            padding: 8px 4px !important;
          }
          .logo img {
            max-width: 120px;
            height: auto;
          }
          .content {
            padding: 10px 2vw !important;
          }
          .section-banner img {
            width: 100vw;
            max-width: 100vw;
            height: auto;
          }
          table, th, td {
            font-size: 11px;
            padding: 6px 4px;
          }
          .code-tabs, .custom-code-tabs {
            margin: 12px 0 !important;
          }
          .tab-nav li, .custom-tab-nav li {
            padding: 6px 8px;
            font-size: 12px;
          }
        }

        @media (max-width: 400px) {
          .content {
            padding: 2px 1vw !important;
          }
          .section-banner img {
            width: 100vw;
            max-width: 100vw;
            height: auto;
          }
          h1, h2, h3, h4, h5, h6 {
            font-size: 1.1em !important;
          }
        }

        /* Scrollspy styles */
        .scrollspy-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
            margin-top: 48px;
        }

        .scrollspy-list li {
            margin-bottom: 8px;
            font-size: 16px;
        }

        .scrollspy-list li a {
            text-decoration: none;
            color: #333;
        }

        .scrollspy-list li a:hover {
            text-decoration: underline;
            color: var(--hover-color);
        }

        .scrollspy-list .level-h2 {
            padding-left: 15px;
        }

        .scrollspy-list .level-h3 {
            padding-left: 30px;
        }

        .scrollspy-list .level-h4 {
            padding-left: 45px;
        }

        .scrollspy-list li.selected>span,
        .scrollspy-list li.selected> a,
        .scrollspy-list li a.active {
            background: #e0f7ef;
            color: #00b77a !important;
            font-weight: bold;
            border-radius: 4px;
        }

        /* Scrollspy styles for aside */
        #scrollspy-aside {
            width: 280px;
            position: sticky;
            top: 50px;
            height: calc(100vh - 50px);
            overflow-y: auto;
            background: #f8f9fa;
            padding-top: 20px;
            border-right: 1px solid #e0e0e0;
            z-index: 9;
        }

        #scrollspy-aside ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #scrollspy-aside li {
            margin-bottom: 8px;
        }

        #scrollspy-aside a {
            display: block;
            padding: 8px 16px;
            color: #003323;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.2s, color 0.2s;
        }

        #scrollspy-aside a.active {
            background: #e6f7ef;
            color: #50D378;
            font-weight: bold;
        }

        @media (max-width: 900px) {
            #scrollspy-aside {
                display: none;
            }

            main.main {
                margin-left: 0 !important;
            }
        }

        html,
        body {
            margin: 0;
            padding: 0;
            height: 100%;
            background: #f7f8fa;
            scroll-behavior: smooth;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        nav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            height: 60px;
        }

        nav a,
        nav button {
            margin-left: 20px;
        }

        #content {
            position: relative;
        }

        .main-content {
            padding: 40px;
        }

        footer {
            background: #003323;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #fff;
        }

        .icon-24 {
            height: 24px;
            width: 24px;
            object-fit: contain;
        }

        .footer-tnc {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            color: #fff;
            font-size: 16px;
            text-align: left;
        }

        .footer-tnc a {
            color: #fff !important;
            text-decoration: underline;
        }

        .footer-tnc a:hover {
            color: #50D378 !important;
        }

        .footer-tnc span {
            padding-left: 5px;
            padding-right: 5px;
        }

        .footer-social-icons {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 12px;
            width: 100%;
        }

        @media (max-width: 900px) {
            .footer-social-icons {
                justify-content: center;
            }
        }

        .scrollspy-list li.selected> a,
        .scrollspy-list li a.active {
            background: #e0f7ef;
            color: #00b77a !important;
            font-weight: bold;
            border-radius: 4px;
        } 
    /* Root Variables */
    :root {
      --font-family-base: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
      --font-size-base: 16px;
      --line-height-base: 1.6;

      --color-text: #003323;
      --color-hover: #50d387;
      --color-heading: var(--color-hover);
      --color-bg: #f9fafd;
      --color-bg-light: #f5f5f5;
      --color-bg-alt: #fafafa;
      --color-border: #e0e0e0;
      --color-code: #30363d;
      --color-white: #fff;
      --color-dark: #1e1e1e;

      --sidebar-width: 220px;
      --toc-width: 220px;
    }

    /* Reset and Base Styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family-base);
      font-size: var(--font-size-base);
      line-height: var(--line-height-base);
      background-color: var(--color-bg);
      color: var(--color-text);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: inherit;
      color: var(--color-heading);
      line-height: 1.4;
      margin-top: 14px;
    }

    h1 {
      font-size: 36px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 24px;
    }

    h4 {
      font-size: 20px;
    }

    h5 {
      font-size: 18px;
    }

    h6 {
      font-size: 16px;
    }

    /* Links */
    a {
      text-decoration: underline;
      color: var(--color-hover);
      font-family: var(--font-family-base);
    }

    a:hover {
      text-decoration: none;
    }

    a>code {
      background: none;
      padding: 0;
      color: var(--color-hover);
      border: none;
    }

    /* Header */
    #header {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--color-white);
      z-index: 1000;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
    }

    /* Sidebar */
    .scrollspy-sidebar,
    .sidebar {
      position: fixed;
      top: 70px;
      left: 0;
      width: var(--sidebar-width);
      background: var(--color-bg);
      border-right: 1px solid var(--color-border);
      overflow-y: auto;
      padding: 60px 32px;
      font-weight: 400;
    }

    .sidebar {
      position: sticky;
      top: 40px;
      background: var(--color-bg);
      height: calc(110vh - 90px);
      padding: 60px 32px;
      width: 400px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar li {
      margin-bottom: 12px;
      cursor: pointer;
    }

    .sidebar li:hover {
      color: #007b8f;
    }

    /* Layout */
    .wrapper {
      margin-left: var(--sidebar-width);
      padding: 40px 100px 0 80px;
      display: flex;
      gap: 32px;
    }

    .main-section {
      display: flex;
      align-items: flex-start;
    }

    /* Content */
    .content {
      flex: 1;
      padding: 40px 100px 40px 40px;
    }

    .content h2,
    h3,
    h4,
    h5,
    h6 {
      color: #00b77a;
      margin-bottom: 14px;
    }

    /* Tables */
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      font-size: 14px;
    }

    th,
    td {
      padding: 12px 15px;
      border: 1px solid #ddd;
      text-align: left;
      vertical-align: top;
    }

    th {
      background: #f4f4f4;
      font-weight: bold;
    }

    tr:nth-child(even) {
      background: var(--color-bg-alt);
    }

    /* Code Styling */
    code {
      background: var(--color-bg-light);
      padding: 2px 6px;
      border-radius: 4px;
      font-family: monospace;
      color: var(--color-code);
    }

    /* Code Tabs */
    .code-tabs {
      background: var(--color-dark);
      border: 1px solid #30363d;
      box-shadow: 0 0 0 1px #21262d;
      border-radius: 6px;
      margin: 32px 0 !important;
    }

    .code-tabs pre {
      margin: 0;
      padding: 0px !important;
      line-height: 1.4;
    }

    .tab-nav {
      display: flex;
      list-style: none;
      background: var(--color-dark);
      border-bottom: 1px solid #30363d;
      padding: 0;
    }

    .tab-nav li {
      padding: 10px 16px;
      cursor: pointer;
      font-weight: 600;
      color: #ccc;
    }

    .tab-nav li.active {
      color: #fff;
      background: #252526;
      border-bottom: 2px solid #58a6ff;
    }

    .tab-pane {
      display: none;
      background: var(--color-dark);
      color: #d4d4d4;
      white-space: pre-wrap;
      padding: 20px;
      line-height: 1.4;
    }

    .tab-pane.active {
      display: flex;
    }

    /* TOC */
    .main-content-toc {
      position: fixed;
      top: 100px;
      right: 20px;
      width: var(--toc-width);
      max-height: calc(100vh - 120px);
      overflow-y: auto;
      padding: 12px 16px;
      background: var(--color-white);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      z-index: 999;
    }

    .main-content-toc .toc-heading {
      font-weight: 400;
      margin-bottom: 12px;
      font-size: 15px;
    }

    .main-content-toc .toc-item {
      margin-bottom: 8px;
    }

    .main-content-toc .toc-item a {
      text-decoration: none;
      font-size: 15px;
      color: var(--color-text);
    }

    .main-content-toc .toc-item a:hover {
      color: var(--color-hover);
    }

    .main-content-toc .level-2 {
      margin-left: 10px;
    }

    .main-content-toc .level-3 {
      margin-left: 20px;
    }

    .main-content-toc .level-4 {
      margin-left: 30px;
    }

    /* Scrollspy */
    .scrollspy-list {
      list-style: none;
      margin: 0;
      padding-left: 0;
    }

    .scrollspy-list li {
      margin-bottom: 8px;
      font-size: 16px;
    }

    .scrollspy-list li a {
      text-decoration: none;
      color: #333;
    }

    .scrollspy-list li a:hover {
      color: var(--color-hover);
      text-decoration: underline;
    }

    .scrollspy-list .level-h2 {
      padding-left: 15px;
    }

    .scrollspy-list .level-h3 {
      padding-left: 30px;
    }

    .scrollspy-list .level-h4 {
      padding-left: 45px;
    }

    /* Banner */
    .banner {
      background: #043a3d;
      color: white;
      padding: 48px 32px;
    }

    .banner h1 {
      font-size: 36px;
      margin-bottom: 12px;
    }

    .banner p {
      font-size: 18px;
      color: #cce9e5;
    }

    /* Badges */
    .badge,
    .http-method,
    .badge-required {
      display: inline-block;
      font-size: 12px;
      font-weight: bold;
      color: white;
      padding: 4px 10px;
      border-radius: 20px;
    }

    .badge {
      background: #007bff;
      padding: 2px 8px;
      border-radius: 12px;
    }

    .get {
      background: #10b981;
    }

    .post {
      background: #569cd6;
    }

    .put {
      background: #f59e0b;
    }

    .delete {
      background: #ef4444;
    }

    .required,
    .badge-required {
      background: #50d387;
      font-size: 11px;
      border-radius: 4px;
      padding: 2px 6px;
    }

    /* Footer */
    .footer-tnc,
    .footer-social-icons {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: white;
    }

    .footer-tnc {
      justify-content: flex-start;
      text-align: left;
    }

    .footer-social-icons {
      justify-content: flex-end;
      width: 100%;
    }

    .footer-tnc a,
    .footer-social-icons a {
      color: white !important;
      text-decoration: underline;
      transition: color 0.2s;
    }

    .footer-tnc a:hover,
    .footer-social-icons a:hover {
      color: var(--color-hover) !important;
    }

    .footer-tnc span {
      padding: 0 5px;
    }

    /* Responsive Design */
    @media (max-width: 1100px) {
      .sidebar {
        display: none !important;
      }
      .main-section, .wrapper {
        margin-left: 0 !important;
        grid-template-columns: 1fr !important;
        padding-left: 0 !important;
      }
    }

    @media (max-width: 900px) {
      .main-section {
        flex-direction: column;
        gap: 0;
      }
      .content {
        padding: 24px 10px 24px 10px !important;
      }
      .section-banner img {
        width: 100%;
        height: auto;
      }
      table {
        font-size: 12px;
      }
    }
    @media(max-width:767px){
        .content,.code-tabs{
            width: 95%;
        margin:auto;
        }
    }
    @media(max-width:701px){
        .footer-left,.footer-right{
            justify-content: center;
        }
        .footer-main{font-size:14px;}
    }
    @media (max-width: 600px) {
      body {
        font-size: 14px;
      }
      .section-content {
    margin-top: 49px;
}
      .header_align, #header, .navbar {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 6px 4px !important;
      }
      .logo img {
        max-width: 90px;
        height: auto;
      }
      .content {
        padding: 10px 2vw !important;
      }
      .section-banner img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
      }
      table, th, td {
        font-size: 11px;
        padding: 6px 4px;
      }
      .code-tabs, .custom-code-tabs {
        margin: 12px 0 !important;
      }
      .tab-nav li, .custom-tab-nav li {
        padding: 6px 8px;
        font-size: 12px;
      }
      .content,.code-tabs{
            width: 95%;
        margin:auto;
        }
    }

    @media (max-width: 400px) {
      .content {
        padding: 2px 1vw !important;
        
      }
      .section-banner img {
        width: 100vw;
        max-width: 100vw;
        height: auto;
      }
      h1, h2, h3, h4, h5, h6 {
        font-size: 1.1em !important;
      }
    }

    /* Product Guide specific variables */
    /* ========== GRID LAYOUTS ========== */
.benefits-section,
.features-grid,
.who-can-use-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-section { grid-template-columns: repeat(2, 1fr); }
  .who-can-use-grid,
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.features-grid {
grid-template-columns: repeat(4, 1fr); 
}
  

@media (min-width: 1024px) {
  .benefits-section { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== CARD BASE ========== */
.benefit-card,
.feature-card,
.user-card,
.how-it-works-card,
.why-pine-labs-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}


.how-it-works-card {
padding: 1rem 2rem 2rem;
}

.benefit-card,
.feature-card,
.user-card {
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover,
.user-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
}

.feature-card {
  border: 1px solid;
}

.card-blue {
  border-color: #dbeafe;
}

/* ========== ICONS ========== */
.icon-container,
.step-number {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container {
  background: #d0f6e5;
  color: var(--green-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.icon,
.check-icon,
.benefit-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.benefit-icon {
color: #16a34a;
}

.icon-blue { color: #2563eb; }
.icon-purple { color: #9333ea; }
.icon-green { color: #16a34a; }
.icon-orange { color: #ea580c; }

/* ========== TEXT ========== */
.benefit-title,
.step-title,
.card-title,
.card-heading {
  font-weight: 600;
  color: var(--text-dark);
	margin: 0;
}

.feature-card-title {
  font-weight: var(--markdown-title-weight, 600);
	margin-bottom: 2rem;
	font-size: var(--markdown-title-size, 1.25em);
}

.benefit-title,
.step-title {
  font-size: 1rem;
  padding: 15px 15px 15px 0;
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.benefit-description,
.step-description,
.feature-item span,
.benefit-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FEATURE LISTS ========== */
.feature-list,
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item,
.benefit-item {
  display: flex;
  gap: 0.75rem;
}

/* ========== STEPS ========== */
.steps-container {
  display: flex;
  flex-direction: column;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  border-radius: 50%;
  background: #002323;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1.2rem;
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #cbd5e1;
  margin-top: 0.75rem;
}

.step-item:last-child .arrow-icon {
  display: none;
}

/* ========== CALLOUT ========== */
.callout-box {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--blue-bg);
  border-radius: var(--radius);
  border: 1px solid #dbeafe;
}

.callout-text {
  color: #1e3a8a;
  font-weight: 500;
  text-align: center;
}

/* ========== WHY PINE LABS ========== */
.why-pine-labs-card {
  padding: 2.5rem;
  color: var(--green-dark);
}

.content-center { text-align: center; }

.main-heading {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* ========== FOOTER ========== */
.footer-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #475569;
}

.footer-text {
  font-size: 1.125rem;
}

/* ========== MOBILE ========== */
@media (max-width: 640px) {
  body { padding: 1rem; }

  .why-pine-labs-card,
  .user-card,
  .how-it-works-card {
    padding: 1.5rem;
  }

  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .arrow-icon {
    display: none;
  }

  .main-heading { font-size: 1.5rem; }
  .subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .footer-text { font-size: 1rem; }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.markdown-body ul {
padding-left: 0px !important;
}

.icon-wrapper {
  background: #d0f6e5;
  color: var(--green-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
	margin: auto;
}
