.elementor-2570 .elementor-element.elementor-element-20646c3{--display:flex;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-933c882 */:root {
            --lns-primary: #1B4690;
            --lns-secondary: #F7911D;
            --lns-rare: #D1E5FF;
            --lns-others: #ffe4c5;
            --lns-important: #C49600;
            --lns-text: #333333;
            --lns-bg-light: #fdfdfd;
            --lns-white: #ffffff;
        }

        /* Basic reset for canvas preview */
       
 .lns-blog-wrapper {
        font-family: inherit;
        color: var(--lns-text);
      
        margin: 0 auto;
        line-height: 1.8;
        font-size: 1.1rem;
        /* Subtle educational transparent background effect */
        background-color: transparent;
        background-image: radial-gradient(var(--lns-rare) 1px, transparent 1px), radial-gradient(var(--lns-others) 1px, transparent 1px);
        background-size: 40px 40px;
        background-position: 0 0, 20px 20px;
        padding: 20px 0;
    }

        .lns-blog-wrapper section {
            margin-bottom: 2.5rem;
        }

        .lns-blog-wrapper h1, 
        .lns-blog-wrapper h2, 
        .lns-blog-wrapper h3, 
        .lns-blog-wrapper h4 {
            color: var(--lns-primary);
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .lns-blog-wrapper h1 { 
            font-size: 2.5rem; 
            border-bottom: 3px solid var(--lns-secondary); 
            padding-bottom: 10px; 
            display: inline-block; 
        }
        .lns-blog-wrapper h2 { 
            font-size: 2rem; 
            border-left: 5px solid var(--lns-important); 
            padding-left: 15px; 
        }
        .lns-blog-wrapper h3 { 
            font-size: 1.5rem; 
        }

        .lns-blog-wrapper p { 
            margin-bottom: 1.5rem; 
        }

        /* Direct Answer / Intro Box */
        .lns-direct-answer {
            background: var(--lns-rare);
            border-left: 5px solid var(--lns-primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 2rem 0;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* Table of Contents */
        .lns-toc-container {
            background: var(--lns-white);
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px 20px;
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            display: inline-block;
            min-width: 300px;
          
        }
        @media(min-width: 768px) { .lns-toc-container { width: auto; max-width: 60%; } }
        
        .lns-toc-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            color: var(--lns-primary);
            font-size: 1.2rem;
            margin: 0;
        }
        .lns-toc-header i { transition: transform 0.3s ease; color: var(--lns-secondary); }
        .lns-toc-header.active i { transform: rotate(180deg); }
        .lns-toc-content { display: none; padding-top: 15px; border-top: 1px solid #eee; margin-top: 15px; }
        .lns-toc-content.active { display: block; }
        .lns-toc-list { list-style: none; padding-left: 0; margin: 0; }
        .lns-toc-list li { margin-bottom: 10px; }
        .lns-toc-list li a {
            text-decoration: none;
            color: var(--lns-text);
            transition: color 0.2s ease;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .lns-toc-list li a i { color: var(--lns-rare); margin-top: 5px; font-size: 0.8rem; }
        .lns-toc-list li a:hover { color: var(--lns-secondary); }

        /* Images */
        .lns-blog-wrapper figure {
            margin: 2.5rem 0;
            padding: 0;
            text-align: center;
        }
        .lns-blog-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(27, 70, 144, 0.1);
            display: block;
            margin: 0 auto;
            /* Added background to show image shape before loading in preview */
            background-color: #eee; 
            min-height: 200px;
        }
        .lns-blog-wrapper figcaption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 10px;
            font-style: italic;
        }

        /* Fee Box Styling */
        .fee-mention {
            background: var(--lns-white);
            border: 1px solid #eee;
            padding: 20px;
            border-radius: 8px;
            border-left: 5px solid var(--lns-primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            margin: 2rem 0;
        }
        .fee-mention a {
            color: var(--lns-primary);
            text-decoration: underline;
            font-weight: 600;
        }

        /* FAQ Accordion */
        .lns-faq-container { margin: 3rem 0; }
        .lns-faq-item {
            background: var(--lns-white);
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.03);
            overflow: hidden;
        }
        .lns-faq-question {
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--lns-white);
            transition: background 0.3s ease;
        }
        .lns-faq-question h3 {
            margin: 0;
            font-size: 1.15rem;
            color: var(--lns-primary);
            border: none;
            padding: 0;
        }
        .lns-faq-question i {
            color: var(--lns-secondary);
            transition: transform 0.3s ease;
        }
        .lns-faq-question.active i {
            transform: rotate(45deg);
            color: var(--lns-important);
        }
        .lns-faq-question:hover { background: #fafafa; }
        .lns-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: var(--lns-white);
            padding: 0 20px;
        }
        .lns-faq-item.active .lns-faq-answer {
            padding: 0 20px 20px 20px;
            max-height: 1000px;
            border-top: 1px solid #f5f5f5;
            margin-top: 10px;
        }

        /* CTA Button */
        .lns-cta-block {
            text-align: center;
            margin: 3rem 0;
        }
        .lns-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--lns-secondary);
            color: var(--lns-white);
            padding: 15px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(247, 145, 29, 0.4);
            border: 2px solid transparent;
        }
        .lns-cta-button:hover {
            background: var(--lns-primary);
            box-shadow: 0 8px 20px rgba(27, 70, 144, 0.4);
            transform: translateY(-3px);
            color: var(--lns-white);
        }

        .lns-closing-cta {
            background: var(--lns-rare);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            margin-top: 4rem;
            border: 2px dashed var(--lns-primary);
        }
        .lns-closing-cta h2 { border: none; padding: 0; margin-top: 0; }/* End custom CSS */