.elementor-4092 .elementor-element.elementor-element-ba3a2ff{margin-top:100px;margin-bottom:0px;}.elementor-4092 .elementor-element.elementor-element-f8fb586 ul.hfe-breadcrumbs li{margin-right:10px;}/* Start custom CSS for html, class: .elementor-element-45ebb03 */:root {
        --nb-primary-1: #3F1801;    /* Dark Brown */
        --nb-primary-2: #860D01;    /* Deep Red */
        --nb-secondary: #267200;    /* Dark Green */
        --nb-bg-rare: #FCE2A9;      /* Pale Gold/Yellow */
        --nb-text: #000000;         /* Black */
        --nb-border: #e0e0e0;
        --nb-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }

    /* Base wrapper to avoid affecting global body tags */
    .nb-content-wrapper {
        font-family: var(--nb-font);
        color: var(--nb-text);
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .nb-content-wrapper * {
        box-sizing: border-box;
    }

    /* Headings */
    .nb-content-wrapper h1, 
    .nb-content-wrapper h2, 
    .nb-content-wrapper h3 {
        color: var(--nb-primary-1);
        margin-top: 1.5em;
        margin-bottom: 0.75em;
        line-height: 1.3;
        font-weight: 700;
    }

    .nb-content-wrapper h1 { font-size: 2.2rem; margin-top: 0; }
    .nb-content-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid var(--nb-bg-rare); padding-bottom: 8px; }
    .nb-content-wrapper h3 { font-size: 1.4rem; color: var(--nb-primary-2); }

    /* Links */
    .nb-content-wrapper a {
        color: var(--nb-primary-2);
        text-decoration: none;
        border-bottom: 1px dotted var(--nb-primary-2);
        transition: color 0.2s ease;
    }
    .nb-content-wrapper a:hover {
        color: var(--nb-primary-1);
        border-bottom-style: solid;
    }

    /* Paragraphs & Lists */
    .nb-content-wrapper p {
        margin-bottom: 1.2em;
    }
    .nb-content-wrapper ul {
        margin-bottom: 1.5em;
        padding-left: 20px;
        list-style-type: square; /* Default standard list, no emoji */
    }
    .nb-content-wrapper ul li {
        margin-bottom: 0.5em;
    }

    /* Table of Contents */
    .nb-toc {
        background-color: #fafafa;
        border: 1px solid var(--nb-border);
        border-left: 4px solid var(--nb-primary-1);
        padding: 15px 20px;
        margin: 2em 0;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }
    .nb-toc summary {
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        color: var(--nb-primary-1);
        outline: none;
        list-style: none; /* Hide default arrow to style custom */
        display: flex;
        align-items: center;
    }
    .nb-toc summary::-webkit-details-marker { display: none; }
    .nb-toc summary::before {
        content: "\25B6"; /* Unicode right arrow */
        font-size: 0.8em;
        margin-right: 10px;
        color: var(--nb-primary-2);
        transition: transform 0.2s ease;
    }
    .nb-toc[open] summary::before {
        transform: rotate(90deg);
    }
    .nb-toc ul {
        margin-top: 15px;
        margin-bottom: 0;
        list-style-type: none;
        padding-left: 10px;
    }
    .nb-toc ul ul {
        padding-left: 20px;
        margin-top: 5px;
    }
    .nb-toc li { margin-bottom: 8px; }
    .nb-toc a { border: none; font-weight: 500; }

    /* Sections & Clearfix */
    .nb-section {
        margin-bottom: 3rem;
    }
    .nb-clearfix::after {
        content: "";
        display: table;
        clear: both;
    }

    /* Image Positioning */
    .nb-img-wrapper {
        margin-bottom: 1.5rem;
    }
    .nb-img-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        display: block;
    }
    .nb-img-wrapper figcaption {
        font-size: 0.85rem;
        color: #555;
        text-align: center;
        margin-top: 8px;
        font-style: italic;
    }

    /* Desktop Alignments */
    @media (min-width: 769px) {
        .nb-img-right {
            float: right;
            width: 45%;
            margin: 0.5rem 0 1.5rem 2rem;
        }
        .nb-img-left {
            float: left;
            width: 45%;
            margin: 0.5rem 2rem 1.5rem 0;
        }
        .nb-img-full {
            width: 100%;
            margin: 1.5rem 0;
        }
    }

    /* Pricing Table - Finance/Classic Design */
    .nb-table-responsive {
        overflow-x: auto;
        margin: 2rem 0;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .nb-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        background: #fff;
    }
    .nb-table th {
        background-color: var(--nb-primary-1);
        color: #fff;
        padding: 14px 16px;
        font-weight: 600;
        white-space: nowrap;
    }
    .nb-table td {
        padding: 12px 16px;
        border-bottom: 1px solid var(--nb-border);
        color: var(--nb-text);
    }
    .nb-table tbody tr:nth-child(even) {
        background-color: #fcfcfc;
    }
    .nb-table tbody tr:hover {
        background-color: var(--nb-bg-rare); /* Subtle hover effect */
    }

    /* FAQ Accordion */
    .nb-faq-item {
        border-bottom: 1px solid var(--nb-border);
        padding: 15px 0;
    }
    .faq-question {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--nb-primary-1);
        cursor: pointer;
        list-style: none;
        position: relative;
        padding-right: 30px;
        outline: none;
    }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-question::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        font-size: 1.4rem;
        color: var(--nb-primary-2);
        line-height: 1;
        transition: transform 0.2s ease;
    }
    .nb-faq-item[open] .faq-question::after {
        content: "\2212"; /* Minus sign */
        transform: rotate(180deg);
    }
    .faq-answer {
        margin-top: 12px;
        color: #333;
        line-height: 1.6;
    }

    /* Review Block */
    .nb-review-card {
        background: #fafafa;
        border-left: 4px solid var(--nb-secondary);
        padding: 15px 20px;
        margin-bottom: 1.5rem;
        border-radius: 0 4px 4px 0;
    }
    .nb-review-card strong {
        display: block;
        color: var(--nb-primary-1);
        margin-bottom: 5px;
    }

    /* Footer & Contact Block */
    .nb-contact-block {
        background-color: var(--nb-bg-rare);
        padding: 2rem;
        border-radius: 6px;
        margin-top: 2rem;
        border: 1px solid rgba(63, 24, 1, 0.1);
    }
    .nb-contact-block a {
        font-weight: 600;
        border: none;
    }
    .nb-contact-block a:hover {
        text-decoration: underline;
    }
    .nb-map-container {
        position: relative;
        padding-bottom: 40%; 
        height: 0;
        overflow: hidden;
        margin-top: 1.5rem;
        border-radius: 6px;
    }
    .nb-map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .nb-content-wrapper h1 { font-size: 1.8rem; }
        .nb-content-wrapper h2 { font-size: 1.5rem; }
        .nb-img-wrapper { margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; float: none !important; }
        .nb-map-container { padding-bottom: 60%; }
    }/* End custom CSS */