/* ============================================================
   Landsay Hugo — Custom Styles
   Primary: #5B9CF6 (lighter blue)  Dark: #25272b  Font: Inter
   ============================================================ */

:root {
    --ls-primary:       #5B9CF6;
    --ls-primary-dark:  #3f8efc;
    --ls-primary-rgb:   91, 156, 246;
    --ls-dark:          #25272b;
    --ls-text:          #495057;
    --ls-text-muted:    #6c757d;
    --ls-bg:            #ffffff;
    --ls-bg-light:      #f8f9fa;
    --ls-border:        #dee2e6;
    --ls-header-h:      70px;
    --ls-font:          'Inter', sans-serif;
    --ls-radius:        6px;
    --ls-radius-lg:     10px;
    --ls-shadow:        0 2px 15px rgba(0,0,0,0.07);
    --ls-shadow-md:     0 4px 24px rgba(91,156,246,0.18);
}

/* ---- Base ---- */
body {
    font-family: var(--ls-font);
    color: var(--ls-text);
    font-size: 15px;
    background: var(--ls-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ls-font);
    font-weight: 500;
    line-height: 1.3;
    color: var(--ls-dark);
}

a { text-decoration: none; outline: none; }
a:hover { color: var(--ls-primary); }

/* Body top-padding for fixed header */
body { padding-top: var(--ls-header-h); }
@media (max-width: 991px) {
    :root { --ls-header-h: 62px; }
}

/* ---- Preloader (landsay original style) ---- */
#preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999999;
    transition: opacity 0.5s ease;
}
#status {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.load_2f67b91990abc4f5 {
    padding: 5px;
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 50px;
    height: 50px;
}
.load_2f67b91990abc4f5 hr {
    border: 0;
    margin: 0;
    width: 40%; height: 40%;
    position: absolute;
    border-radius: 50%;
    opacity: .8;
    animation: spin 2s ease infinite;
}
.load_2f67b91990abc4f5 :first-child  { background: #06ba63; animation-delay: -1.5s; }
.load_2f67b91990abc4f5 :nth-child(2) { background: var(--ls-primary); animation-delay: -1s; }
.load_2f67b91990abc4f5 :nth-child(3) { background: #f4b942; animation-delay: -0.5s; }
.load_2f67b91990abc4f5 :last-child   { background: var(--ls-dark); }
@keyframes spin {
    0%,100% { transform: translateX(200%); }
    25%      { transform: translateY(200%); }
    50%      { transform: translateX(0); }
    75%      { transform: translateY(0); }
}

/* ---- Header / Navbar ---- */
.ls-header_31d5f03c1ab5dc4f {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
}
.ls-navbar_ec9454c5b4aca00a {
    background-color: #fff !important;
    padding: 0;
    transition: all 0.5s ease;
    border-bottom: 1px solid var(--ls-border);
}
/* nav-sticky = landsay pattern; adds shadow */
#navbar.nav-sticky {
    margin-top: 0;
    box-shadow: 0 3px 10px 0 rgba(38,107,193,0.08);
}
.ls-navbar-brand_9f35d4ff08f8f2a0 {
    padding: 0;
    line-height: 67px;
}
.ls-navbar-brand_9f35d4ff08f8f2a0 img {
    max-height: 27px;
    width: auto;
    display: block;
}

/* Nav links */
.ls-navbar_ec9454c5b4aca00a .navbar-nav_2e4978a95eaea4e1 .nav-item_57c4bf08b0b7d4e2 > .nav-link_f8dad8dfb7211bc7 {
    color: var(--ls-dark);
    font-size: 13px;
    padding: 24px 8px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background-color: transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.ls-navbar_ec9454c5b4aca00a .navbar-nav_2e4978a95eaea4e1 .nav-item_57c4bf08b0b7d4e2 > .nav-link_f8dad8dfb7211bc7:hover,
.ls-navbar_ec9454c5b4aca00a .navbar-nav_2e4978a95eaea4e1 .nav-item_57c4bf08b0b7d4e2 > .nav-link_f8dad8dfb7211bc7.active,
.ls-navbar_ec9454c5b4aca00a .navbar-nav_2e4978a95eaea4e1 .nav-item_57c4bf08b0b7d4e2.active > .nav-link_f8dad8dfb7211bc7 {
    color: var(--ls-primary);
}
/* Dropdown caret — explicit FA icon, right-aligned */
.ls-dropdown-toggle::after { display: none; } /* hide Bootstrap default */
.ls-chevron_669f5212e90fe43f {
    font-size: 0.6em;
    margin-left: 5px;
    vertical-align: middle;
    transition: transform 0.25s ease;
    display: inline-block;
}
.ls-has-dropdown.ls-open > .ls-dropdown-toggle .ls-chevron_669f5212e90fe43f {
    transform: rotate(180deg);
}

/* Dropdown menu — custom, no Popper */
.ls-dropdown-menu_709960063b0aba74 {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 9999;
    background: #fff;
    border: none;
    border-radius: var(--ls-radius-lg);
    box-shadow: rgba(0,0,0,0.08) 0 8px 24px;
    padding: 8px;
    min-width: 170px;
    list-style: none;
    margin: 0;
    animation: DropDownSlide 0.2s ease;
    animation-fill-mode: both;
}
.ls-has-dropdown {
    position: relative;
}
.ls-has-dropdown.ls-open > .ls-dropdown-menu_709960063b0aba74 {
    display: block;
}
@keyframes DropDownSlide {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ls-dropdown-item_644959d689cf3969 {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ls-dark);
    padding: 8px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.ls-dropdown-item_644959d689cf3969:hover,
.ls-dropdown-item_644959d689cf3969:focus {
    background: var(--ls-primary);
    color: #fff !important;
}

/* Navbar toggler */
.ls-navbar-toggler_232dc28b6da48e76 {
    border: none;
    background: none;
    font-size: 22px;
    color: var(--ls-dark);
    padding: 4px 8px;
    line-height: 1;
    cursor: pointer;
}
.ls-navbar-toggler_232dc28b6da48e76:focus { box-shadow: none; }
/* Toggle icon swap */
.ls-navbar-toggler_232dc28b6da48e76 .ls-icon-close_21c2b44d28e66734 { display: none; }
.ls-navbar-toggler_232dc28b6da48e76[aria-expanded="true"] .ls-icon-open_0f63e180c341e624  { display: none; }
.ls-navbar-toggler_232dc28b6da48e76[aria-expanded="true"] .ls-icon-close_21c2b44d28e66734 { display: inline; }

/* Mobile nav */
@media (max-width: 991px) {
    .navbar_102dfc9a511c9dc4 > .container_3003134283dac96a {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .ls-navbar-brand_9f35d4ff08f8f2a0 { line-height: 62px; }
    .ls-navbar_ec9454c5b4aca00a .navbar-collapse_0cbf69b70a8a6606 {
        background: #fff;
        padding: 10px 0 18px;
        border-top: 1px solid var(--ls-border);
    }
    .ls-navbar_ec9454c5b4aca00a .navbar-nav_2e4978a95eaea4e1 .nav-item_57c4bf08b0b7d4e2 > .nav-link_f8dad8dfb7211bc7 {
        padding: 10px 8px;
    }
    .ls-dropdown-menu_709960063b0aba74 {
        position: static;
        box-shadow: none;
        padding: 0 0 0 16px;
        animation: none;
        border-radius: 0;
        background: transparent;
    }
    .ls-dropdown-item_644959d689cf3969 {
        color: var(--ls-dark);
        font-size: 12px;
    }
}

/* ---- Play Button ---- */
.ls-play-btn_5d31c7dc4230f034 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ls-primary);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.5s ease;
    border: 1px solid var(--ls-primary);
    position: relative;
    overflow: hidden;
}
.ls-play-btn_5d31c7dc4230f034::after {
    background: rgba(255,255,255,0.25);
    content: "";
    height: 155px;
    left: -75px;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 0.9s ease;
    width: 50px;
    z-index: 1;
}
.ls-play-btn_5d31c7dc4230f034:hover {
    background: #4a8fe8;
    border-color: #4a8fe8;
    box-shadow: 0 8px 20px -6px rgba(var(--ls-primary-rgb), 0.6);
    transform: translateY(-3px);
    color: #fff !important;
}
.ls-play-btn_5d31c7dc4230f034:hover::after { left: 110%; }

/* ---- Page Hero (Breadcrumb Banner) ---- */
/* Landsay style: centered title + breadcrumb, accent color background */
.ls-page-hero_453f8090832ad587 {
    background-color: var(--ls-primary);
    padding: 20px 0 20px;
    position: relative;
    text-align: center;
}
.ls-page-hero-overlay_e0b9def2cdb3ebf1 {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}
.ls-page-hero-inner_3e8d886bb645468d {
    position: relative;
    z-index: 1;
}
.ls-page-hero-title_6879fa5f934220f8 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
/* Breadcrumb trail inside hero */
.ls-page-hero_453f8090832ad587 .ls-breadcrumb_af69f63448ac8dba {
    background: none;
    padding: 0;
    margin: 0;
    --bs-breadcrumb-divider: '->';
}
.ls-page-hero_453f8090832ad587 .ls-breadcrumb_af69f63448ac8dba .breadcrumb-item_c9ecfef16e8adbda a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}
.ls-page-hero_453f8090832ad587 .ls-breadcrumb_af69f63448ac8dba .breadcrumb-item_c9ecfef16e8adbda a:hover { color: #fff; }
.ls-page-hero_453f8090832ad587 .ls-breadcrumb_af69f63448ac8dba .breadcrumb-item_c9ecfef16e8adbda.active {
    color: rgba(255,255,255,0.6);
}
.ls-page-hero_453f8090832ad587 .ls-breadcrumb_af69f63448ac8dba .breadcrumb-item_c9ecfef16e8adbda + .breadcrumb-item_c9ecfef16e8adbda::before {
    color: rgba(255,255,255,0.5);
    content: var(--bs-breadcrumb-divider, '->');
}

/* ---- Content Area ---- */
.ls-content-area_8fc2846f844e76f4 {
    padding: 10px 0 8px;
    background: #fff;
}
.ls-home-content_aeee4a5daa2f8de2 {
    background: #fff;
    padding: 20px 0 40px;
}

@media (max-width: 991px) {
    .ls-home-content_aeee4a5daa2f8de2 {
        padding: 5px 0 40px;
    }
}

/* ---- Article Prose ---- */
.ls-article {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ls-text);
}
.ls-article-home {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ls-text);
}
.ls-article > * + *, .ls-article-home > * + * { margin-top: 1.2em; }
.ls-article > *:first-child, .ls-article-home > *:first-child { margin-top: 0; }

.ls-article h1, .ls-article-home h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--ls-dark);
}
.ls-article h2, .ls-article-home h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ls-dark);
    margin-top: 2em;
    margin-bottom: 0.6em;
}
.ls-article h3, .ls-article-home h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ls-dark);
    margin-top: 1.6em;
    margin-bottom: 0.4em;
}
.ls-article h4, .ls-article-home h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ls-dark);
    margin-top: 1.4em;
}
.ls-article p, .ls-article-home p { margin: 1.1em 0; }
.ls-article a { color: var(--ls-primary); text-decoration: underline; text-decoration-thickness: 1px; }
.ls-article a:hover { color: var(--ls-primary-dark); }
.ls-article strong, .ls-article-home strong { font-weight: 600; color: var(--ls-dark); }

.ls-article ul, .ls-article ol,
.ls-article-home ul, .ls-article-home ol {
    padding-left: 1.6em;
    margin: 1.1em 0;
}
.ls-article ul { list-style: disc; }
.ls-article ol { list-style: decimal; }
.ls-article li, .ls-article-home li { margin: 0.3em 0; }

/* Images */
.ls-content-img_7a6b0a75fc666ee1,
.ls-article img,
.ls-article-home img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--ls-radius-lg);
    margin: 1.8em auto;
    display: block;
    box-shadow: var(--ls-shadow);
}

/* Blockquote */
.ls-article blockquote, .ls-article-home blockquote {
    border-left: 3px solid var(--ls-primary);
    margin: 1.6em 0;
    padding: 0.7em 1.2em;
    background: rgba(var(--ls-primary-rgb), 0.05);
    border-radius: 0 var(--ls-radius) var(--ls-radius) 0;
    color: var(--ls-text);
    font-style: italic;
}

/* ---- Tables — Landsay style ---- */
/* Wrapper for horizontal scroll on mobile */
.ls-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2em 0;
    border-radius: var(--ls-radius-lg);
    box-shadow: rgba(0,0,0,0.04) 0 8px 24px;
}
.col-12_4f2589f0d95b612b table,
.ls-article table,
.ls-article-home table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.55;
    white-space: nowrap;
    min-width: 100%;
    margin: 2em 0;
    border-radius: var(--ls-radius-lg);
    box-shadow: rgba(0,0,0,0.04) 0 8px 24px;
    overflow: hidden;
}
/* When inside the scroll wrapper, let wrapper own spacing */
.ls-table-scroll table {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
}
/* Header row — light gray, not dark blue, like landsay */
.col-12_4f2589f0d95b612b thead th,
.ls-article thead th,
.ls-article-home thead th {
    background-color: var(--ls-bg-light);
    color: var(--ls-dark);
    padding: 11px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-bottom: 2px solid var(--ls-border);
}
/* Body cells */
.col-12_4f2589f0d95b612b tbody td,
.ls-article tbody td,
.ls-article-home tbody td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--ls-border);
    color: var(--ls-text);
    vertical-align: top;
    background: #fff;
}
.col-12_4f2589f0d95b612b tbody tr:last-child td,
.ls-article tbody tr:last-child td,
.ls-article-home tbody tr:last-child td { border-bottom: none; }
/* Subtle stripe */
.col-12_4f2589f0d95b612b tbody tr:nth-child(even) td,
.ls-article tbody tr:nth-child(even) td,
.ls-article-home tbody tr:nth-child(even) td {
    background-color: var(--ls-bg-light);
}
/* Hover row highlight */
.col-12_4f2589f0d95b612b tbody tr:hover td,
.ls-article tbody tr:hover td,
.ls-article-home tbody tr:hover td {
    background-color: rgba(var(--ls-primary-rgb), 0.05);
}

/* ---- Demo iframe ---- */
.ls-demo-wrapper_287ee557fa193a69 {
    width: 100%;
    margin: 0;
    border-radius: var(--ls-radius-lg);
    overflow: hidden;
    box-shadow: rgba(0,0,0,0.04) 0 8px 24px;
}
.ls-demo-wrapper_287ee557fa193a69 iframe,
.ls-demo-iframe_f76f17cd03cb7bad {
    width: 100% !important;
    min-height: 580px;
    height: 580px;
    display: block;
    border: none;
}
@media (max-width: 768px) {
    .ls-demo-wrapper_287ee557fa193a69 iframe, .ls-demo-iframe_f76f17cd03cb7bad { min-height: 380px; height: 380px; }
}

/* ---- TOC ---- */
.ls-toc_66bc0dbdc4f8b717 {
    background: var(--ls-bg-light);
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    margin: 2em 0;
    box-shadow: var(--ls-shadow);
}
.ls-toc-title_a84000f59223c6eb {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ls-text-muted);
    padding: 14px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}
.ls-toc-title_a84000f59223c6eb::-webkit-details-marker { display: none; }
.ls-toc-title_a84000f59223c6eb::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: #9ca3af;
    transition: transform 0.2s;
}
.ls-toc_66bc0dbdc4f8b717[open] .ls-toc-title_a84000f59223c6eb::after { transform: rotate(180deg); }
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents {
    padding: 0 20px 14px;
    border-top: 1px solid var(--ls-border);
}
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    padding-top: 10px;
}
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents li { margin: 3px 0; }
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents a {
    color: var(--ls-primary);
    text-decoration: none;
    font-size: 0.88rem;
}
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents a:hover { text-decoration: underline; }
.ls-toc_66bc0dbdc4f8b717 nav#TableOfContents ul ul { padding-left: 1em; padding-top: 0; }

/* ---- FAQ — landsay style (details/summary, no Bootstrap accordion) ---- */
.ls-faq_241d74af89639229 {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ls-border);
}
.ls-faq-title_f44c25f6a4a9b879 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ls-dark);
    margin-bottom: 1.6rem;
}
.ls-faq-list_2404f7676efac0af { display: flex; flex-direction: column; gap: 10px; }

.ls-faq-item_e45135d321831548 {
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    overflow: hidden;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ls-faq-item_e45135d321831548[open] {
    border-color: rgba(var(--ls-primary-rgb), 0.35);
    box-shadow: 0 2px 14px rgba(var(--ls-primary-rgb), 0.08);
}
.ls-faq-question_4c1ee0a53fac3d36 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ls-dark);
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}
.ls-faq-question_4c1ee0a53fac3d36::-webkit-details-marker { display: none; }
.ls-faq-item_e45135d321831548[open] > .ls-faq-question_4c1ee0a53fac3d36 { color: var(--ls-primary); }
/* Plus/minus icon */
.ls-faq-icon_cf5bb0e69c2e3ad5 {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(var(--ls-primary-rgb), 0.1);
    position: relative;
    transition: background 0.2s, transform 0.25s;
}
.ls-faq-icon_cf5bb0e69c2e3ad5::before,
.ls-faq-icon_cf5bb0e69c2e3ad5::after {
    content: '';
    position: absolute;
    background: var(--ls-primary);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.ls-faq-icon_cf5bb0e69c2e3ad5::before { width: 10px; height: 2px; }
.ls-faq-icon_cf5bb0e69c2e3ad5::after  { width: 2px; height: 10px; transition: transform 0.25s, opacity 0.25s; }
.ls-faq-item_e45135d321831548[open] .ls-faq-icon_cf5bb0e69c2e3ad5 {
    background: rgba(var(--ls-primary-rgb), 0.15);
    transform: rotate(45deg);
}
.ls-faq-answer_06e4dd6a571368fc {
    padding: 0 20px 16px;
    font-size: 0.93rem;
    color: var(--ls-text);
    line-height: 1.75;
    border-top: 1px solid var(--ls-border);
    padding-top: 14px;
}
.ls-faq-answer_06e4dd6a571368fc p:last-child { margin-bottom: 0; }

.ls-contact-area_11a4d7f74bf3252a {
    padding: 71px 0 71px;
    background: #fff;
}

/* ---- Play button in content ---- */
.ls-play-content-btn_fb29709638464978 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ls-primary);
    color: #fff !important;
    border: 1px solid var(--ls-primary);
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 28px;
    text-decoration: none !important;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}
.ls-play-content-btn_fb29709638464978::after {
    background: rgba(255,255,255,0.25);
    content: "";
    height: 155px;
    left: -75px;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 0.9s ease;
    width: 50px;
    z-index: 1;
}
.ls-play-content-btn_fb29709638464978:hover {
    background: var(--ls-primary-dark);
    border-color: var(--ls-primary-dark);
    box-shadow: 0 8px 20px -6px rgba(var(--ls-primary-rgb), 0.6);
    transform: translateY(-3px);
    color: #fff !important;
}
.ls-play-content-btn_fb29709638464978:hover::after { left: 110%; }

/* ---- Bootstrap btn-primary override ---- */
.btn-primary_5d804f332a02a8b3 {
    background: var(--ls-primary);
    border-color: var(--ls-primary);
    font-weight: 500;
    border-radius: 30px;
    padding: 12px 28px;
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}
.btn-primary_5d804f332a02a8b3::after {
    background: rgba(255,255,255,0.25);
    content: "";
    height: 155px;
    left: -75px;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 0.9s ease;
    width: 50px;
    z-index: 1;
}
.btn-primary_5d804f332a02a8b3:hover, .btn-primary_5d804f332a02a8b3:focus, .btn-primary_5d804f332a02a8b3:active {
    background: var(--ls-primary-dark);
    border-color: var(--ls-primary-dark);
    box-shadow: 0 8px 20px -6px rgba(var(--ls-primary-rgb), 0.6);
    transform: translateY(-3px);
}
.btn-primary_5d804f332a02a8b3:hover::after { left: 110%; }
.ls-btn-read-more_b398c1e8dfa1ce0b { display: inline-flex; align-items: center; gap: 6px; }
.ls-btn-submit_ecf8dc6abfd618fb { padding: 10px 30px; }

/* ---- Section Card ---- */
.ls-card_41ad48dd014f7c0c {
    background: #fff;
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    padding: 24px;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: var(--ls-shadow);
}
.ls-card_41ad48dd014f7c0c:hover {
    box-shadow: var(--ls-shadow-md);
    transform: translateY(-3px);
}
.ls-card-title_7da80466ecbcf132 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.ls-card-title_7da80466ecbcf132 a { color: var(--ls-dark); }
.ls-card-title_7da80466ecbcf132 a:hover { color: var(--ls-primary); }
.ls-card-desc_4c08c867e5f88452 { font-size: 0.9rem; color: var(--ls-text-muted); margin-bottom: 16px; }

/* ---- Contact form ---- */
.ls-contact-form-wrap_a7646dc91293782c, .ls-contact-info_44303de1e607b222 {
    background: #fff;
    border: 1px solid var(--ls-border);
    border-radius: var(--ls-radius-lg);
    padding: 32px;
    height: 100%;
    box-shadow: var(--ls-shadow);
}
.ls-section-title_7c6832b788448e45 { font-size: 1.35rem; font-weight: 600; margin-bottom: 1.2rem; }
.ls-form-control_be9d0af4008434d0 {
    padding: 12px 20px;
    border-color: rgba(37,39,43,0.2);
    box-shadow: rgba(149,157,165,0.08) 0 8px 24px;
    border-radius: var(--ls-radius);
    font-size: 15px;
    transition: border-color 0.3s;
}
.ls-form-control_be9d0af4008434d0:focus {
    border-color: var(--ls-primary);
    box-shadow: rgba(149,157,165,0.08) 0 8px 24px;
}
.ls-form-control_be9d0af4008434d0::placeholder { color: #ced4da; }
.ls-contact-info-item_40d05b3c4914598f {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}
.ls-contact-icon_03de6f8c918737e8 {
    width: 40px; height: 40px;
    background: rgba(var(--ls-primary-rgb), 0.1);
    color: var(--ls-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ls-contact-info-item_40d05b3c4914598f h6 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ls-text-muted);
    margin: 0 0 3px;
}
.ls-contact-info-item_40d05b3c4914598f span, .ls-contact-info-item_40d05b3c4914598f a { font-size: 0.9rem; color: var(--ls-text); }

/* ---- 404 ---- */
.ls-404-area_766b69465760c8f4 {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
}
.ls-404-title_a44e1193bfb130ec { font-size: 7rem; font-weight: 700; color: var(--ls-primary); line-height: 1; margin-bottom: 0; }
.ls-404-heading_d2b506c5f5289ca4 { font-size: 1.8rem; margin: 16px 0 8px; }
.ls-404-text_e298adb5c3d3582d { color: var(--ls-text-muted); font-size: 1rem; margin-bottom: 24px; }

/* ---- Footer ---- */
.ls-footer_3e864f65f8040427 {
    background: #1a1d23;
    color: rgba(255,255,255,0.7);
}
.ls-footer-main_9dfe23113a044f70 { padding: 40px 0 24px; }
.ls-footer-top_ac2679df1d240f0a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
}
.ls-footer-logo_5131cadcf5d27053 { max-height: 27px; width: auto; display: block; }
.ls-footer-nav_776253eb3d81a0f6 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
}
.ls-footer-nav_776253eb3d81a0f6 a {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s;
}
.ls-footer-nav_776253eb3d81a0f6 a:hover { color: #fff; }
.ls-footer-nav-sep_b45cd986dd9cc42d {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    user-select: none;
}

/* Disclaimer blocks — fix #1: label now same color as <strong> text */
.ls-footer-disclaimer-block_7138283b2337b40b { margin-bottom: 16px; max-width: 880px; }
.ls-footer-disclaimer-label_c7cec4f7c9c63be8 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    /* FIXED: match the strong text color so labels stand out */
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}
.ls-footer-disclaimer_d357121fa8200f16 {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin: 0;
}
.ls-footer-disclaimer_d357121fa8200f16 strong { color: rgba(255,255,255,0.65); }

/* Footer bottom */
.ls-footer-bottom_06e4ccc7e067aead { background: rgba(0,0,0,0.2); padding: 14px 0; }
.ls-footer-bottom-inner_d6edf1b11f4eb126 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.ls-copyright_a419dead41e4e990 { font-size: 0.79rem; color: rgba(255,255,255,0.45); }
.ls-trust-logos_065aa6173792f376 { display: flex; align-items: center; gap: 14px; }
.ls-trust-logo_20ef6537c7cfff12 img {
    height: 24px; width: auto; max-width: 68px;
    object-fit: contain; display: block;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.ls-trust-logo_20ef6537c7cfff12 img:hover { opacity: 1; }

/* ---- Back to Top (landsay style) ---- */
#ls-back-to-top {
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: var(--ls-dark);
    border: none;
    border-color: transparent;
    border-radius: 40px;
    color: #fff;
    transition: all 0.5s ease;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    z-index: 8999;
    padding: 0;
}
#ls-back-to-top:hover {
    border-radius: 5px;
    background-color: var(--ls-primary);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .ls-footer-top_ac2679df1d240f0a { flex-direction: column; align-items: flex-start; }
    .ls-footer-bottom-inner_d6edf1b11f4eb126 { flex-direction: column; align-items: flex-start; }
    .ls-contact-form-wrap_a7646dc91293782c, .ls-contact-info_44303de1e607b222 { margin-bottom: 24px; }
    .ls-404-title_a44e1193bfb130ec { font-size: 5rem; }
    .ls-page-hero_453f8090832ad587 { padding: 20px 0 20px; }
}



/* ---- Color overrides (use lighter blue everywhere Bootstrap uses primary) ---- */
.text-primary_47168049d895cb31 { color: var(--ls-primary) !important; }
.bg-primary_28c385fa7cc4c472 { background-color: var(--ls-primary) !important; }
.primary-link_f92c776a3ea66f73 { color: var(--ls-dark); transition: all 0.5s ease; }
.primary-link_f92c776a3ea66f73:hover { color: var(--ls-primary); }
.feature-icon_a0ea47762622f04a { background-color: rgba(var(--ls-primary-rgb), 0.15); color: var(--ls-primary); }

/* ---- Fix nav-sticky: keep navbar white (not transparent) ---- */
.navbar_102dfc9a511c9dc4.nav-sticky { background-color: #fff !important; }

*:first-child > img:first-child {
  margin-top: 0;
}

*:first-child > p:first-child {
    margin-top: 15px!important;
}

.ls-contact-holder_d8983506527a8353 {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}
@media (max-width: 991px){
    .order-1_58b3923e28e1b11f {
        margin-bottom: 20px;
    }
}

