.elementor-4102 .elementor-element.elementor-element-ba3a2ff{margin-top:100px;margin-bottom:0px;}.elementor-4102 .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;    /* Dark Red */
        --nb-secondary: #267200;    /* Dark Green */
        --nb-rare-bg: #FCE2A9;      /* Light Yellowish Cream */
        --nb-text: #000000;         /* Black */
        --nb-border: #E0E0E0;
        --nb-bg-transparent: rgba(252, 226, 169, 0.15);
    }

    /* Base Wrapper Typography & Layout */
    .nb-content-wrapper {
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: var(--nb-text);
        max-width: 100%;
        margin: 0 auto;
        line-height: 1.7;
        font-size: 16px;
    }

    .nb-content-wrapper * {
        box-sizing: border-box;
    }

    /* Headings */
    .nb-content-wrapper h1 {
        color: var(--nb-primary-1);
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        border-bottom: 3px solid var(--nb-primary-2);
        padding-bottom: 10px;
        display: inline-block;
    }

    .nb-content-wrapper h2 {
        color: var(--nb-primary-1);
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 1rem;
        position: relative;
        padding-left: 15px;
    }
    
    .nb-content-wrapper h2::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 5px;
        background-color: var(--nb-primary-2);
        border-radius: 2px;
    }

    .nb-content-wrapper p {
        margin-bottom: 1.2rem;
    }

    .nb-content-wrapper a {
        color: var(--nb-primary-2);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px dotted var(--nb-primary-2);
        transition: all 0.3s ease;
    }

    .nb-content-wrapper a:hover {
        color: var(--nb-secondary);
        border-bottom: 1px solid var(--nb-secondary);
    }

    .nb-content-wrapper strong {
        color: var(--nb-primary-1);
        font-weight: 600;
    }

    /* Section Styling */
    .nb-section {
        background-color: var(--nb-bg-transparent);
        border: 1px solid var(--nb-border);
        border-radius: 8px;
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    /* Table of Contents (TOC) */
    .nb-toc {
        background-color: var(--nb-rare-bg);
        border: 1px solid rgba(63, 24, 1, 0.1);
        border-radius: 8px;
        padding: 1.5rem;
        margin: 2rem 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .nb-toc summary {
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--nb-primary-1);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nb-toc summary::-webkit-details-marker {
        display: none;
    }

    .nb-toc summary::after {
        content: "+";
        font-size: 1.5rem;
        color: var(--nb-primary-2);
        transition: transform 0.3s;
    }

    .nb-toc[open] summary::after {
        content: "-";
    }

    .nb-toc ul {
        margin-top: 1rem;
        padding-left: 1rem;
        list-style: none;
    }

    .nb-toc ul li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 15px;
    }
    
    .nb-toc ul li::before {
        content: "■";
        color: var(--nb-secondary);
        font-size: 0.6rem;
        position: absolute;
        left: 0;
        top: 6px;
    }

    .nb-toc ul li a {
        color: var(--nb-primary-1);
        border-bottom: none;
    }
    
    .nb-toc ul li a:hover {
        color: var(--nb-secondary);
    }

    /* Images & Figures */
    .nb-content-wrapper figure {
        margin: 2rem 0;
        text-align: center;
    }

    .nb-content-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        display: block;
        margin: 0 auto;
    }

    .nb-content-wrapper figcaption {
        margin-top: 0.8rem;
        font-size: 0.9rem;
        font-style: italic;
        color: #555;
    }

    /* Table Styling - Finance Minimalist */
    .nb-content-wrapper table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
        background-color: #fff;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .nb-content-wrapper th, 
    .nb-content-wrapper td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--nb-border);
    }

    .nb-content-wrapper th {
        background-color: var(--nb-primary-1);
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .nb-content-wrapper tr:last-child td {
        border-bottom: none;
    }

    .nb-content-wrapper tbody tr:hover {
        background-color: rgba(252, 226, 169, 0.3);
    }

    /* FAQ Accordion */
    .nb-faq-accordion {
        margin-top: 1.5rem;
    }

    .nb-faq-item {
        background-color: #fff;
        border: 1px solid var(--nb-border);
        margin-bottom: 10px;
        border-radius: 6px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nb-faq-item[open] {
        border-color: var(--nb-primary-2);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .nb-faq-item summary {
        padding: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        color: var(--nb-primary-1);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #fafafa;
    }

    .nb-faq-item summary::-webkit-details-marker {
        display: none;
    }

    .nb-faq-item summary::after {
        content: "+";
        color: var(--nb-primary-2);
        font-size: 1.4rem;
        font-weight: bold;
    }

    .nb-faq-item[open] summary::after {
        content: "-";
    }

    .nb-faq-item[open] summary {
        background-color: var(--nb-rare-bg);
    }

    .faq-answer {
        padding: 1.2rem;
        border-top: 1px solid var(--nb-border);
        color: var(--nb-text);
        background-color: #fff;
    }

    /* Video Embed & Maps */
    .video-review-highlight,
    .map-embed {
        margin: 2rem 0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        background-color: #000;
    }
    
    .map-embed iframe,
    .video-review-highlight iframe {
        display: block;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nb-section {
            padding: 1.5rem 1rem;
        }
        .nb-content-wrapper h1 {
            font-size: 1.8rem;
        }
        .nb-content-wrapper h2 {
            font-size: 1.4rem;
        }
        .nb-content-wrapper th, 
        .nb-content-wrapper td {
            padding: 0.8rem;
            font-size: 0.9rem;
        }
    }/* End custom CSS */