.elementor-1309 .elementor-element.elementor-element-cb57845{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b722212 */:root {
        --primary-color: #114268;
        --secondary-color: #795d26;
        --rare-color: #1b5379;
        --text-color: #192c27;
        --bg-color: #fcfdfd; 
        --section-bg: #ffffff;
    }

    /* Container & Typography */
    .finoda-blog-wrapper {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        color: var(--text-color);
        background-color: var(--bg-color);
        /* Subtle finance/grid background pattern */
        background-image: radial-gradient(rgba(27, 83, 121, 0.08) 1px, transparent 1px);
        background-size: 24px 24px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem;
        box-sizing: border-box;
    }

    .finoda-blog-wrapper h1, 
    .finoda-blog-wrapper h2, 
    .finoda-blog-wrapper h3 {
        color: var(--primary-color);
        line-height: 1.3;
        margin-top: 0;
    }

    .finoda-blog-wrapper h1 {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
    }

    .finoda-blog-wrapper h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid rgba(121, 93, 38, 0.2);
        padding-bottom: 0.5rem;
        position: relative;
    }

    .finoda-blog-wrapper h2::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background-color: var(--secondary-color);
    }

    .finoda-blog-wrapper h3 {
        font-size: 1.4rem;
        color: var(--rare-color);
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .finoda-blog-wrapper p {
        margin-bottom: 1.2rem;
    }

    .finoda-blog-wrapper a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid var(--secondary-color);
        transition: all 0.3s ease;
    }

    .finoda-blog-wrapper a:hover {
        color: var(--secondary-color);
        border-bottom-color: var(--primary-color);
    }

    /* Sections */
    .blog-section {
        background: var(--section-bg);
        padding: 2.5rem;
        margin-bottom: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(17, 66, 104, 0.04);
        border: 1px solid rgba(27, 83, 121, 0.08);
    }

    /* Blockquotes & CTAs */
    .finoda-cta-box {
        background: linear-gradient(135deg, rgba(17, 66, 104, 0.05), rgba(121, 93, 38, 0.05));
        border-left: 4px solid var(--secondary-color);
        padding: 1.2rem 1.5rem;
        margin: 2rem 0;
        border-radius: 0 8px 8px 0;
        font-style: italic;
    }

    .finoda-cta-box strong {
        color: var(--primary-color);
    }

    /* Lists */
    .finoda-blog-wrapper ul, 
    .finoda-blog-wrapper ol {
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }

    .finoda-blog-wrapper li {
        margin-bottom: 0.6rem;
    }

    .finoda-blog-wrapper ul li::marker {
        color: var(--secondary-color);
    }

    /* Images */
    .finoda-image-wrapper {
        margin: 2.5rem 0;
        text-align: center;
    }

    .finoda-image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(17, 66, 104, 0.12);
    }

    .finoda-image-wrapper figcaption {
        font-size: 0.95rem;
        color: var(--rare-color);
        margin-top: 0.8rem;
        font-style: italic;
    }

    /* Video Embed */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        border-radius: 10px;
        margin: 2.5rem 0;
        box-shadow: 0 10px 30px rgba(17, 66, 104, 0.12);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Table of Contents */
    .toc-container {
        background: var(--section-bg);
        border: 1px solid var(--rare-color);
        border-radius: 10px;
        margin: 2.5rem 0;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(17, 66, 104, 0.05);
    }

    .toc-header {
        background: var(--primary-color);
        color: #ffffff;
        padding: 1.2rem 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .toc-header svg {
        fill: #ffffff;
        transition: transform 0.3s ease;
    }

    .toc-content {
        display: none; /* Collapsed by default */
        padding: 1.5rem;
        background: rgba(27, 83, 121, 0.02);
    }

    .toc-content ul {
        list-style: none;
        padding-left: 1.5rem;
        margin-bottom: 0;
    }

    .toc-content > ul {
        padding-left: 0;
    }

    .toc-content a {
        border-bottom: none;
        color: var(--text-color);
        font-weight: 500;
        display: inline-block;
        padding: 0.3rem 0;
    }

    .toc-content a:hover {
        color: var(--primary-color);
        padding-left: 4px;
    }

    /* FAQs Accordion */
    .faq-container {
        margin-top: 1.5rem;
    }

    .faq-item {
        border-bottom: 1px solid rgba(27, 83, 121, 0.15);
        margin-bottom: 0.5rem;
    }

    .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: inherit;
    }

    .faq-icon {
        color: var(--secondary-color);
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .faq-answer {
        display: none;
        padding: 0 0 1.2rem 0;
        color: var(--text-color);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .finoda-blog-wrapper { padding: 1rem; }
        .blog-section { padding: 1.5rem; }
        .finoda-blog-wrapper h1 { font-size: 1.9rem; }
        .finoda-blog-wrapper h2 { font-size: 1.5rem; }
        .finoda-blog-wrapper h3 { font-size: 1.25rem; }
        .toc-header { padding: 1rem; }
        .toc-content { padding: 1rem; }
    }/* End custom CSS */