.elementor-971 .elementor-element.elementor-element-6a683b22{--display:flex;--margin-top:100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-ae421a2 */: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;
    }

    .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;
    }

    /* Headings */
    .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;
        width: 100%;
    }
    @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-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); }
    .lns-toc-list ul { padding-left: 20px; margin-top: 5px; list-style: none; }

    /* 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;
    }
    /* Horizontal Images are 100%. If a square image is added, this class handles the 50/50 layout */
    .lns-img-square-50 { width: 50%; float: left; margin: 0 20px 20px 0 !important; }
    @media (max-width: 768px) { .lns-img-square-50 { width: 100%; float: none; margin: 0 0 20px 0 !important; } }
    
    .lns-blog-wrapper figcaption {
        font-size: 0.9rem;
        color: #666;
        margin-top: 10px;
        font-style: italic;
    }

    /* Table Styling */
    .lns-fee-table-wrapper {
        overflow-x: auto;
        margin: 2.5rem 0;
        background: var(--lns-white);
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    }
    .lns-fee-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        min-width: 600px;
    }
    .lns-fee-table th {
        background-color: var(--lns-primary);
        color: var(--lns-white);
        padding: 15px;
        font-weight: 600;
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .lns-fee-table th:last-child { border-right: none; }
    .lns-fee-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        color: var(--lns-text);
    }
    .lns-fee-table tbody tr:nth-child(even) {
        background-color: #fcfcfc;
    }
    .lns-fee-table tbody tr:hover {
        background-color: var(--lns-rare);
    }
    .lns-fee-note {
        font-size: 0.9rem;
        color: #555;
        padding: 15px;
        background: var(--lns-others);
        margin: 0;
        border-radius: 0 0 10px 10px;
        border-left: 4px solid var(--lns-important);
    }

    /* Lists */
    .lns-blog-wrapper ul {
        list-style: none;
        padding-left: 0;
    }
    .lns-blog-wrapper ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
    }
    .lns-blog-wrapper ul li::before {
        content: "\f058"; /* FontAwesome Check Circle */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 3px;
        color: var(--lns-secondary);
        font-size: 1.1rem;
    }

    /* 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: 500px;
        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 */