.elementor-4074 .elementor-element.elementor-element-ba3a2ff{margin-top:100px;margin-bottom:0px;}.elementor-4074 .elementor-element.elementor-element-f8fb586 ul.hfe-breadcrumbs li{margin-right:10px;}/* Start custom CSS for html, class: .elementor-element-45ebb03 */:root {
        --primary-1: #3F1801;
        --primary-2: #860D01;
        --secondary: #267200;
        --bg-rare: #FCE2A9;
        --text-color: #000000;
        --border-color: #e5e5e5;
    }

    .nb-content-wrapper {
        font-family: inherit; /* Inherits default WordPress theme font */
        color: var(--text-color);
        max-width: 100%;
        line-height: 1.7;
        margin: 0 auto;
        background-color: transparent;
    }

    .nb-content-wrapper h1, 
    .nb-content-wrapper h2, 
    .nb-content-wrapper h3 {
        color: var(--primary-1);
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .nb-content-wrapper h1 { font-size: 2.2rem; }
    .nb-content-wrapper h2 { font-size: 1.8rem; border-bottom: 2px solid var(--bg-rare); padding-bottom: 8px; }
    .nb-content-wrapper h3 { font-size: 1.4rem; color: var(--primary-2); }

    .nb-content-wrapper p { margin-bottom: 1.2rem; }

    .nb-content-wrapper a {
        color: var(--primary-2);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s ease;
    }
    .nb-content-wrapper a:hover {
        border-bottom-color: var(--primary-2);
    }

    /* Section Styling */
    .nb-section {
        margin-bottom: 2.5rem;
        padding: 0;
        background: transparent;
    }

    /* Images */
    .nb-image-box {
        margin: 2rem 0;
        text-align: center;
    }
    .nb-image-box 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-image-box figcaption {
        font-size: 0.9rem;
        font-style: italic;
        color: #555;
        margin-top: 10px;
    }

    /* Table of Contents (Step-wise Map) */
    .nb-toc-container {
        background-color: #fafafa;
        border: 1px solid var(--border-color);
        border-left: 4px solid var(--primary-1);
        border-radius: 6px;
        margin: 2rem 0;
        padding: 0;
    }
    .nb-toc-summary {
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-1);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--bg-rare);
    }
    .nb-toc-summary::-webkit-details-marker { display: none; }
    .nb-toc-summary::after {
        content: '+';
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--primary-1);
    }
    details[open] .nb-toc-summary::after { content: '-'; }
    
    .nb-toc-body { padding: 15px 20px; }
    .nb-toc-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
        border-left: 2px dashed var(--border-color);
    }
    .nb-toc-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }
    .nb-toc-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        width: 15px;
        height: 2px;
        background-color: var(--border-color);
    }
    .nb-toc-list a { color: var(--text-color); font-weight: normal; font-size: 0.95rem; }
    .nb-toc-list a:hover { color: var(--primary-2); }
    .nb-toc-sublist { margin-top: 5px; list-style: none; padding-left: 0; }
    .nb-toc-sublist li::before { width: 10px; background-color: var(--bg-rare); }

    /* Tables */
    .nb-table-responsive { overflow-x: auto; margin: 1.5rem 0; }
    .nb-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        background: #fff;
    }
    .nb-table th {
        background-color: var(--bg-rare);
        color: var(--primary-1);
        text-align: left;
        padding: 12px 15px;
        border: 1px solid var(--border-color);
    }
    .nb-table td {
        padding: 12px 15px;
        border: 1px solid var(--border-color);
        vertical-align: top;
    }
    .nb-table tr:nth-child(even) { background-color: #fcfcfc; }

    /* Lists (WordPress standard styling approach) */
    .nb-styled-list {
        list-style-type: square;
        padding-left: 1.5rem;
        color: var(--text-color);
    }
    .nb-styled-list li {
        margin-bottom: 0.5rem;
    }
    .nb-styled-list li::marker {
        color: var(--secondary);
    }

    /* Video Embed */
    .video-review-highlight {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000;
        border-radius: 8px;
        margin: 2rem 0;
    }
    .video-review-highlight iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* FAQ Accordion */
    .nb-faq-wrapper { margin: 2rem 0; }
    .nb-faq-item {
        border: 1px solid var(--border-color);
        border-radius: 6px;
        margin-bottom: 10px;
        background: #fff;
        overflow: hidden;
    }
    .nb-faq-question {
        width: 100%;
        text-align: left;
        padding: 16px 20px;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary-1);
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: inherit;
    }
    .nb-faq-question::after {
        content: '\25BC';
        font-size: 0.8rem;
        color: var(--primary-2);
        transition: transform 0.3s ease;
    }
    .nb-faq-item.active .nb-faq-question::after {
        transform: rotate(-180deg);
    }
    .nb-faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        background: #fafafa;
        padding: 0 20px;
    }
    .nb-faq-item.active .nb-faq-answer {
        max-height: 1000px;
        padding: 0 20px 20px 20px;
    }
    .nb-faq-answer p:last-child { margin-bottom: 0; }

    /* Map Embed */
    .map-embed {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin: 1.5rem 0;
    }

    /* Links Row */
    .nb-links-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 1.5rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nb-content-wrapper h1 { font-size: 1.8rem; }
        .nb-content-wrapper h2 { font-size: 1.5rem; }
        .nb-toc-summary { font-size: 1rem; }
        .nb-faq-question { font-size: 1rem; padding: 12px 15px; }
        .nb-faq-answer { padding: 0 15px; }
        .nb-faq-item.active .nb-faq-answer { padding: 0 15px 15px 15px; }
    }/* End custom CSS */