/* Start custom CSS for html, class: .elementor-element-15e9171 */.nb-blog-container {
    max-width: 100%;
    margin: 0 auto;
    color: #000000;
    font-family: inherit;
    line-height: 1.6;
    background-color: transparent;
}

/* Typography & Headings */
.nb-blog-container h1, .nb-blog-container h2, .nb-blog-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.nb-title {
    color: #3F1801;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.nb-h2 {
    color: #860D01;
    font-size: 2rem;
    border-bottom: 2px solid #FCE2A9;
    padding-bottom: 0.5rem;
}
.nb-h3 {
    color: #3F1801;
    font-size: 1.5rem;
}
.nb-blog-container p {
    margin-bottom: 1.25rem;
}

/* Links */
.nb-blog-container a {
    color: #860D01;
    text-decoration: none;
    border-bottom: 1px dashed #860D01;
    transition: all 0.3s ease;
}
.nb-blog-container a:hover {
    color: #3F1801;
    border-bottom: 1px solid #3F1801;
}

/* Quick Answer Block */
.nb-quick-answer {
    background-color: #FCE2A9;
    border-left: 5px solid #267200;
    padding: 1.5rem;
    margin: 1.5rem 0 2.5rem 0;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
}
.nb-quick-answer p { margin: 0; }
.nb-quick-answer strong { color: #3F1801; }

/* Table of Contents */
.nb-toc {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin: 2rem 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.nb-toc-toggle {
    width: 100%;
    background: #FCE2A9;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.15rem;
    font-weight: bold;
    color: #3F1801;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.nb-toc-content {
    padding: 1.5rem;
    display: none;
}
.nb-toc-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0;
}
.nb-toc-content > ul { padding-left: 0; }
.nb-toc-content li { margin-bottom: 0.6rem; }
.nb-toc-content a {
    color: #3F1801;
    border: none;
    font-weight: 500;
}
.nb-toc-content a:hover {
    color: #860D01;
    text-decoration: underline;
}

/* Images & Figures */
.nb-figure {
    margin: 2.5rem 0;
    text-align: center;
}
.nb-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}
.nb-figure figcaption {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Sections */
.nb-section {
    margin-bottom: 3.5rem;
}

/* Lists */
.nb-blog-container ul, .nb-blog-container ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.nb-blog-container li {
    margin-bottom: 0.5rem;
}

/* Tables */
.nb-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}
.nb-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
}
.nb-table th {
    background: #3F1801;
    color: #fff;
    padding: 1rem;
    font-weight: 600;
}
.nb-table td {
    padding: 1rem;
    border-bottom: 1px solid #eaeaea;
}
.nb-table tr:last-child td { border-bottom: none; }
.nb-table tr:nth-child(even) { background: #fafafa; }

/* FAQ Accordion */
.nb-faq-wrapper {
    margin: 2rem 0;
}
.nb-faq-item {
    border: 1px solid #eaeaea;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.nb-faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #3F1801;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
}
.nb-faq-question:hover { background: #FCE2A9; }
.nb-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #860D01;
    font-weight: normal;
}
.nb-faq-question.active::after { content: '-'; }
.nb-faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}
.nb-faq-answer p { margin: 0; }
.nb-faq-question.active + .nb-faq-answer {
    padding: 1.25rem;
    max-height: 800px;
    border-top: 1px solid #eaeaea;
}

/* Video Embed */
.nb-video-embed {
    margin: 2.5rem auto;
    max-width: 700px;
}
.nb-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.nb-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.nb-video-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .nb-title { font-size: 2rem; }
    .nb-h2 { font-size: 1.75rem; }
    .nb-h3 { font-size: 1.3rem; }
    .nb-quick-answer { padding: 1rem; }
}/* End custom CSS */