/* Start custom CSS for html, class: .elementor-element-15e9171 */.nb-blog-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit;
    color: #000000;
    line-height: 1.6;
    background-color: transparent;
    box-sizing: border-box;
  }
  .nb-blog-wrapper * {
    box-sizing: border-box;
  }

  /* Typography */
  .nb-blog-wrapper h1, 
  .nb-blog-wrapper h2, 
  .nb-blog-wrapper h3 {
    color: #3F1801;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.3;
  }
  .nb-blog-wrapper h1 { font-size: 2.2rem; }
  .nb-blog-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid #FCE2A9; padding-bottom: 8px; }
  .nb-blog-wrapper h3 { font-size: 1.4rem; color: #860D01; }
  .nb-blog-wrapper p { margin-bottom: 1.2rem; }
  .nb-blog-wrapper a { color: #267200; text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
  .nb-blog-wrapper a:hover { color: #860D01; text-decoration: underline; }

  /* Quick Answer Block */
  .nb-quick-answer {
    background-color: #FCE2A9;
    border-left: 5px solid #3F1801;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
  }
  .nb-quick-answer strong { color: #860D01; }

  /* Notice / Note Blocks */
  .nb-notice {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #860D01;
    padding: 1rem;
    font-size: 0.95rem;
    font-style: italic;
    margin: 1.5rem 0;
    border-radius: 4px;
  }

  /* Table of Contents (TOC) */
  .nb-toc {
    background-color: #fcfaf5;
    border: 1px solid #FCE2A9;
    border-radius: 8px;
    margin: 2rem 0;
    padding: 0;
    overflow: hidden;
  }
  .nb-toc-header {
    background-color: #FCE2A9;
    color: #3F1801;
    padding: 1rem 1.5rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-size: 1.1rem;
  }
  .nb-toc-header svg { width: 20px; height: 20px; transition: transform 0.3s; }
  .nb-toc-header.active svg { transform: rotate(180deg); }
  .nb-toc-content {
    display: none;
    padding: 1.5rem;
  }
  .nb-toc-content ul { list-style: none; padding-left: 0; margin: 0; }
  .nb-toc-content ul li { margin-bottom: 0.5rem; }
  .nb-toc-content ul ul { padding-left: 1.5rem; margin-top: 0.5rem; }
  .nb-toc-content a { color: #3F1801; }
  .nb-toc-content a:hover { color: #860D01; }

  /* Images & Figures */
  .nb-blog-wrapper figure {
    margin: 2rem 0;
    text-align: center;
  }
  .nb-blog-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
  }
  .nb-blog-wrapper figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
  }

  /* Custom Lists (No Emojis, SVG based) */
  .nb-blog-wrapper ul.nb-styled-list {
    list-style: none;
    padding-left: 0;
  }
  .nb-blog-wrapper ul.nb-styled-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.8rem;
  }
  .nb-blog-wrapper ul.nb-styled-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23267200'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* Tables */
  .nb-table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
  }
  .nb-blog-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
  }
  .nb-blog-wrapper th, .nb-blog-wrapper td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
  }
  .nb-blog-wrapper th {
    background-color: #FCE2A9;
    color: #3F1801;
    font-weight: bold;
  }
  .nb-blog-wrapper tr:nth-child(even) { background-color: #fafafa; }
  
  /* Icons utility class */
  .nb-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: text-bottom;
    fill: currentColor;
  }

  /* Accordion (FAQs) */
  .nb-accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
  }
  .nb-accordion-header {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3F1801;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    font-family: inherit;
  }
  .nb-accordion-header:hover { background: #FCE2A9; }
  .nb-accordion-header h3 { margin: 0; font-size: 1.1rem; border: none; color: inherit; padding: 0; }
  .nb-accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
  }
  .nb-accordion-icon::before, .nb-accordion-icon::after {
    content: ''; position: absolute; background: #860D01; transition: 0.3s;
  }
  .nb-accordion-icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
  .nb-accordion-icon::after { top: 4px; left: 11px; width: 2px; height: 16px; }
  .nb-accordion-header.active .nb-accordion-icon::after { transform: rotate(90deg); opacity: 0; }
  .nb-accordion-header.active { background: #fcfaf5; border-bottom: 1px solid #e0e0e0; }
  
  .nb-accordion-content {
    display: none;
    padding: 1.5rem;
    background: #fff;
    border-top: none;
  }
  .nb-accordion-content p:last-child { margin-bottom: 0; }

  /* Sections */
  .nb-blog-wrapper section { margin-bottom: 3rem; }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .nb-blog-wrapper h1 { font-size: 1.8rem; }
    .nb-blog-wrapper h2 { font-size: 1.5rem; }
    .nb-quick-answer { padding: 1rem; }
  }/* End custom CSS */