.elementor-4076 .elementor-element.elementor-element-624c1ea{margin-top:100px;margin-bottom:0px;}.elementor-4076 .elementor-element.elementor-element-f41b7c2 ul.hfe-breadcrumbs li{margin-right:10px;}/* Start custom CSS for html, class: .elementor-element-e11ca8a */.nb-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: inherit; /* Defaults to WP theme font */
    color: #000000;
    line-height: 1.7;
    background-color: transparent;
    font-size: 16px;
}

.nb-wrapper h1, .nb-wrapper h2, .nb-wrapper h3 {
    color: #3F1801;
    font-weight: 700;
    line-height: 1.3;
}

.nb-wrapper h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.nb-wrapper h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 3px solid #FCE2A9;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.nb-wrapper h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #860D01;
}

.nb-wrapper p {
    margin-bottom: 1.25rem;
}

.nb-wrapper a {
    color: #267200;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nb-wrapper a:hover {
    color: #860D01;
    text-decoration: underline;
}

.nb-wrapper strong {
    font-weight: 700;
    color: #3F1801;
}

/* Images & Media */
.nb-figure {
    margin: 2rem 0;
    text-align: center;
}

.nb-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(63, 24, 1, 0.1);
    display: block;
    margin: 0 auto;
}

.nb-figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
}

.nb-review-video iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(63, 24, 1, 0.1);
}

/* Table of Contents */
.nb-toc {
    background-color: #FCE2A9;
    border: 1px solid #3F1801;
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
}

.nb-toc-header {
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: #3F1801;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(63, 24, 1, 0.05);
}

.nb-toc-header:hover {
    background-color: rgba(63, 24, 1, 0.1);
}

.nb-toc-content {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(63, 24, 1, 0.1);
}

.nb-toc-content ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.nb-toc-content ul ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.nb-toc-content li {
    margin-bottom: 0.75rem;
}

.nb-toc-content a {
    color: #3F1801;
    font-weight: 500;
}

.nb-toc-content a:hover {
    color: #860D01;
}

/* Tables */
.nb-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nb-wrapper table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.nb-wrapper th {
    background-color: #FCE2A9;
    color: #3F1801;
    text-align: left;
    padding: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #3F1801;
}

.nb-wrapper td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #000000;
}

.nb-wrapper tr:nth-child(even) {
    background-color: #fdfdfd;
}

/* Lists */
.nb-wrapper ul:not(.nb-toc-content ul) {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.nb-wrapper ul:not(.nb-toc-content ul) li {
    position: relative;
    margin-bottom: 0.75rem;
}

.nb-wrapper ul:not(.nb-toc-content ul) li::before {
    content: "▪";
    color: #860D01;
    position: absolute;
    left: -1.25rem;
    font-size: 1.2rem;
    line-height: 1;
    top: 0.2rem;
}

/* Quotes / Reviews */
.nb-blockquote {
    background-color: #FCE2A9;
    border-left: 4px solid #860D01;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #3F1801;
}

/* FAQ Accordion */
.nb-faq {
    margin: 2rem 0;
}

.nb-faq details {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.nb-faq summary {
    padding: 1.25rem;
    font-weight: 700;
    color: #3F1801;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    background-color: #fcfcfc;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nb-faq summary::-webkit-details-marker {
    display: none;
}

.nb-faq summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #860D01;
    font-size: 1.5rem;
    font-weight: 400;
}

.nb-faq details[open] summary::after {
    content: '−';
}

.nb-faq details[open] summary {
    background-color: #FCE2A9;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.nb-faq .faq-answer {
    padding: 1.25rem;
    border-top: 1px solid #ddd;
}

.nb-faq .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Sections */
.nb-section {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .nb-wrapper { padding: 0 15px; }
    .nb-table-container { margin: 1.5rem -15px; border-radius: 0; padding: 0 15px; }
}/* End custom CSS */