/* Start custom CSS for html, class: .elementor-element-15e9171 */.nb-blog-container {
    --p1: #3F1801;
    --p2: #860D01;
    --sec: #267200;
    --bg-rare: #FCE2A9;
    --text: #000000;
    --border: #e0e0e0;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    max-width: 100%;
    background: transparent;
}

.nb-blog-container h1, 
.nb-blog-container h2, 
.nb-blog-container h3 {
    color: var(--p1);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.nb-blog-container h1 { font-size: 2.25rem; border-bottom: 2px solid var(--p2); padding-bottom: 0.5rem; }
.nb-blog-container h2 { font-size: 1.75rem; border-left: 5px solid var(--p2); padding-left: 10px; }
.nb-blog-container h3 { font-size: 1.35rem; color: var(--p2); }

.nb-blog-container p { margin-bottom: 1.25rem; }

.nb-blog-container a {
    color: var(--p2);
    text-decoration: none;
    border-bottom: 1px dotted var(--p2);
    transition: color 0.3s ease;
}

.nb-blog-container a:hover {
    color: var(--sec);
    border-bottom: 1px solid var(--sec);
}

/* Sections */
.nb-blog-container section {
    margin-bottom: 3.5rem;
    padding: 1rem 0;
}

/* Quick Answer Blockquote */
.nb-blog-container blockquote.quick-answer {
    background-color: var(--bg-rare);
    border-left: 5px solid var(--sec);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
}

/* 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);
}
.nb-blog-container figcaption {
    font-style: italic;
    color: #666;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

/* Table of Contents */
.nb-toc-wrapper {
    background: #fdfdfd;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 2rem 0;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.nb-toc-toggle {
    background: var(--p1);
    color: white;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nb-toc-toggle:hover { background: var(--p2); }
.nb-toc-content {
    padding: 1.5rem;
    display: none;
}
.nb-toc-content ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.nb-toc-content ul li { margin-bottom: 0.75rem; }
.nb-toc-content ul ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.nb-toc-content a { border: none; color: var(--p1); }
.nb-toc-content a:hover { color: var(--sec); }

/* Tables */
.nb-blog-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}
.nb-blog-container th {
    background-color: var(--p1);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}
.nb-blog-container td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.nb-blog-container tr:last-child td { border-bottom: none; }
.nb-blog-container tr:nth-child(even) { background-color: #fafafa; }

/* Lists & Checklist */
.nb-blog-container ul, .nb-blog-container ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.nb-blog-container li { margin-bottom: 0.5rem; }
.nb-blog-container ul.checklist {
    list-style: none;
    padding-left: 0;
}
.nb-blog-container ul.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.nb-blog-container ul.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sec);
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Accordion */
.nb-faq-container { margin: 2rem 0; }
.nb-faq-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 1rem;
    background: white;
}
.nb-faq-question {
    margin: 0;
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--p1);
    font-weight: 600;
}
.nb-faq-question:hover { color: var(--p2); background: var(--bg-rare); }
.nb-faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    display: none;
    color: var(--text);
}
.nb-icon-toggle { font-size: 1.5rem; font-weight: 300; color: var(--p2); }

/* Video Embed */
.wp-block-embed {
    max-width: 700px;
    margin: 2.5rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nb-blog-container h1 { font-size: 1.8rem; }
    .nb-blog-container h2 { font-size: 1.5rem; }
    .nb-blog-container table { display: block; overflow-x: auto; white-space: nowrap; }
}/* End custom CSS */