/* Start custom CSS for html, class: .elementor-element-15e9171 */:root {
        --primary-1: #3F1801; /* Dark Brown */
        --primary-2: #860D01; /* Deep Red */
        --secondary: #267200; /* Dark Green */
        --bg-rare: #FCE2A9; /* Light Peach */
        --bg-rare-light: rgba(252, 226, 169, 0.25);
        --text-color: #000000;
        --border-color: #e2e8f0;
        --wp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }

    .nb-blog-container {
        font-family: var(--wp-font);
        color: var(--text-color);
        max-width: 100%;
        margin: 0 auto;
        line-height: 1.7;
        font-size: 17px;
        background-color: transparent;
    }

    .nb-blog-container h1, 
    .nb-blog-container h2, 
    .nb-blog-container h3 {
        color: var(--primary-1);
        margin-top: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .nb-blog-container h1 { font-size: 2.25rem; font-weight: 700; border-bottom: 3px solid var(--primary-2); padding-bottom: 0.5rem; }
    .nb-blog-container h2 { font-size: 1.75rem; font-weight: 600; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
    .nb-blog-container h3 { font-size: 1.35rem; font-weight: 600; }

    .nb-blog-container p { margin-bottom: 1.5rem; }

    .nb-blog-container a {
        color: var(--primary-2);
        text-decoration: none;
        border-bottom: 1px dotted var(--primary-2);
        transition: all 0.2s ease-in-out;
    }

    .nb-blog-container a:hover {
        color: var(--primary-1);
        border-bottom: 1px solid var(--primary-1);
    }

    /* Blockquote / Quick Answer */
    .nb-quick-answer {
        background-color: var(--bg-rare-light);
        border-left: 4px solid var(--primary-2);
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
        font-size: 1.05rem;
    }

    .nb-quick-answer strong { color: var(--primary-1); }

    /* Table of Contents */
    .nb-toc {
        background-color: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 1.5rem;
        margin: 2rem 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .nb-toc summary {
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--primary-1);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
    }

    .nb-toc summary::-webkit-details-marker { display: none; }
    
    .nb-toc summary::before {
        content: "▼";
        font-size: 0.8rem;
        margin-right: 10px;
        transition: transform 0.3s;
    }

    .nb-toc[open] summary::before { transform: rotate(180deg); }

    .nb-toc-list {
        margin-top: 1rem;
        list-style: none;
        padding-left: 0;
    }

    .nb-toc-list li { margin-bottom: 0.5rem; }
    .nb-toc-list a { border: none; font-weight: 500; }
    
    .nb-toc-sublist {
        list-style: none;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-left: 2px solid var(--border-color);
    }

    .nb-toc-sublist li::before {
        content: "—";
        color: var(--border-color);
        margin-right: 8px;
        margin-left: -1.5rem;
        display: inline-block;
        width: 1rem;
    }

    /* Images */
    .nb-blog-container figure {
        margin: 2.5rem 0;
        text-align: center;
    }

    .nb-blog-container img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        border: 1px solid var(--border-color);
    }

    .nb-blog-container figcaption {
        margin-top: 0.75rem;
        font-size: 0.9rem;
        color: #555;
        font-style: italic;
    }

    /* Lists */
    .nb-blog-container ul {
        list-style-type: none;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .nb-blog-container ul li {
        position: relative;
        margin-bottom: 0.5rem;
    }

    .nb-blog-container ul li::before {
        content: "•";
        color: var(--secondary);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    /* Tables */
    .nb-table-responsive {
        overflow-x: auto;
        margin: 2rem 0;
    }

    .nb-blog-container table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        background: #fff;
    }

    .nb-blog-container th {
        background-color: var(--primary-1);
        color: #fff;
        text-align: left;
        padding: 1rem;
        font-weight: 600;
    }

    .nb-blog-container td {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nb-blog-container tr:nth-child(even) td { background-color: var(--bg-rare-light); }
    .nb-blog-container tr:hover td { background-color: #f1f5f9; }

    /* Contact SVGs */
    .nb-icon-svg {
        width: 18px;
        height: 18px;
        vertical-align: middle;
        margin-right: 8px;
        fill: var(--primary-2);
    }

    /* FAQs */
    .nb-faq { margin-top: 1.5rem; }
    
    .nb-faq details {
        background-color: #fff;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        margin-bottom: 1rem;
        padding: 0;
        overflow: hidden;
    }

    .nb-faq summary {
        padding: 1rem 1.25rem;
        font-weight: 600;
        cursor: pointer;
        background-color: var(--bg-rare-light);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--primary-1);
    }

    .nb-faq summary::-webkit-details-marker { display: none; }
    
    .nb-faq summary::after {
        content: "+";
        font-size: 1.5rem;
        line-height: 1;
        color: var(--primary-2);
        transition: transform 0.3s ease;
    }

    .nb-faq details[open] summary::after {
        transform: rotate(45deg);
    }

    .nb-faq .nb-faq-content {
        padding: 1.25rem;
        border-top: 1px solid var(--border-color);
    }

    /* Video Embed */
    .nb-video-embed {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        margin: 2rem auto;
        max-width: 700px;
    }

    .nb-video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Section Spacing */
    .nb-content-section {
        margin-bottom: 3.5rem;
    }

    @media (max-width: 768px) {
        .nb-blog-container h1 { font-size: 1.75rem; }
        .nb-blog-container h2 { font-size: 1.5rem; }
        .nb-blog-container h3 { font-size: 1.2rem; }
        .nb-quick-answer { padding: 1rem; }
    }/* End custom CSS */