.elementor-1988 .elementor-element.elementor-element-e0abdf0{--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;--margin-top:150px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-1988 .elementor-element.elementor-element-e0abdf0{--margin-top:0px;--margin-bottom:60px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-2480451 */.lns-dutch-page {
    font-family: inherit;
    color: #333333;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    background: transparent;
}

.lns-dutch-page h1, 
.lns-dutch-page h2, 
.lns-dutch-page h3 {
    color: #1B4690;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 700;
}

.lns-dutch-page h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-top: 0;
}

.lns-dutch-page h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #D1E5FF;
    padding-bottom: 8px;
}

.lns-dutch-page h3 {
    font-size: 1.4rem;
}

.lns-dutch-page p {
    margin-bottom: 1.2em;
}

.lns-dutch-page a {
    color: #F7911D;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lns-dutch-page a:hover {
    color: #1B4690;
    text-decoration: underline;
}

/* Sections */
.lns-section {
    margin-bottom: 3rem;
    padding: 10px 0;
}

/* Images & Figures */
.lns-dutch-page figure {
    margin: 2rem 0;
    text-align: center;
}

.lns-dutch-page img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(27, 70, 144, 0.1);
}

.lns-dutch-page figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

/* Table of Contents */
.lns-toc {
    background: #fdfdfd;
    border: 1px solid #D1E5FF;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.lns-toc summary {
    font-weight: 600;
    color: #1B4690;
    cursor: pointer;
    font-size: 1.2rem;
    outline: none;
    list-style: none; /* Modern browsers */
    display: flex;
    align-items: center;
}

.lns-toc summary::-webkit-details-marker {
    display: none; /* Safari */
}

.lns-toc summary::before {
    content: "▶";
    font-size: 0.8rem;
    color: #F7911D;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.lns-toc[open] summary::before {
    transform: rotate(90deg);
}

.lns-toc ul {
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: none;
}

.lns-toc ul li {
    margin-bottom: 8px;
}

.lns-toc ul ul {
    margin-top: 5px;
    padding-left: 20px;
    border-left: 2px solid #D1E5FF;
}

.lns-toc a {
    color: #333;
}

.lns-toc a:hover {
    color: #F7911D;
}

/* Data Table */
.lns-table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.lns-dutch-page table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lns-dutch-page th {
    background-color: #1B4690;
    color: #ffffff;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
}

.lns-dutch-page td {
    padding: 12px 15px;
    border-bottom: 1px solid #D1E5FF;
    color: #444;
}

.lns-dutch-page tr:nth-child(even) td {
    background-color: #f9fbff;
}

.lns-dutch-page tr:hover td {
    background-color: #D1E5FF;
}

/* Lists */
.lns-dutch-page ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 1.5rem;
}

.lns-dutch-page li {
    margin-bottom: 8px;
}

/* Blockquotes */
.lns-dutch-page blockquote {
    background: #ffe4c5;
    border-left: 5px solid #C49600;
    padding: 20px;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #333;
}

/* FAQ Accordion */
.lns-faq-item {
    margin-bottom: 10px;
    border: 1px solid #D1E5FF;
    border-radius: 6px;
    background: #fff;
}

.lns-faq-item summary {
    padding: 15px 20px;
    font-weight: 600;
    color: #1B4690;
    cursor: pointer;
    list-style: none;
    outline: none;
    position: relative;
    background: #fdfdfd;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.lns-faq-item summary:hover {
    background: #ffe4c5;
}

.lns-faq-item summary::-webkit-details-marker {
    display: none;
}

.lns-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #F7911D;
    font-size: 1.4rem;
    font-weight: bold;
}

.lns-faq-item[open] summary::after {
    content: "-";
}

.lns-faq-content {
    padding: 0 20px 15px 20px;
    color: #444;
}

/* CTA / Buttons */
.lns-cta-btn {
    display: inline-block;
    background-color: #F7911D;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(247, 145, 29, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.lns-cta-btn:hover {
    background-color: #1B4690;
    box-shadow: 0 4px 6px rgba(27, 70, 144, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .lns-dutch-page h1 { font-size: 1.8rem; }
    .lns-dutch-page h2 { font-size: 1.5rem; }
    .lns-dutch-page h3 { font-size: 1.2rem; }
    .lns-dutch-page td, .lns-dutch-page th { padding: 10px; font-size: 0.9rem; }
}/* End custom CSS */