/**
 * Cartier Velvet Theme
 * Auto-generated
 */

:root {
    --lhhf-primary: #0a2924;
    --lhhf-primary-light: #6d5aa3;
    --lhhf-primary-dark: #200a6b;
    --lhhf-bronze: #f56f66;
    --lhhf-bronze-light: #9372f5;
    --lhhf-bronze-dark: #5e3ab8;
    --lhhf-silver: #a7c3ce;
    --lhhf-silver-light: #d4d2e8;
    --lhhf-charcoal: #EDE7F6;
    --lhhf-midnight: #F3E5F5;
    --lhhf-slate: #FFFFFF;
    --lhhf-text: #E8EDF2;
    --lhhf-text-dim: #82929f;
    --lhhf-text-dark: #0a252e;
    --lhhf-border: #d7c7ea;
    --lhhf-success: #29cd6d;
    --lhhf-warning: #ec5132;
    --lhhf-highlight: #f5d00a;
    --lhhf-curve-sm: 4px;
    --lhhf-curve-md: 8px;
    --lhhf-curve-lg: 14px;
    --lhhf-glow: 0 4px 20px rgba(0,0,0,0.08);
    --lhhf-glow-bronze: 0 6px 24px rgba(125,78,245,0.25);
    --lhhf-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --lhhf-font-heading: 'Playfair Display', serif;
    --lhhf-font-text: 'Inter', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.lhhf-page {
    font-family: var(--lhhf-font-text);
    background: linear-gradient(180deg, var(--lhhf-charcoal) 0%, var(--lhhf-midnight) 100%);
    color: var(--lhhf-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--lhhf-bronze);
    text-decoration: none;
    transition: var(--lhhf-anim);
}

a:hover {
    color: var(--lhhf-bronze-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   NAVIGATION BAR
================================================ */
.lhhf-topbar {
    background: linear-gradient(180deg, var(--lhhf-primary-dark) 0%, var(--lhhf-charcoal) 100%);
    border-bottom: 1px solid var(--lhhf-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(9px);
}

.lhhf-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.lhhf-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: auto;
}

.lhhf-brand__title {
    font-family: var(--lhhf-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--lhhf-text);
    letter-spacing: 0.5px;
}

.lhhf-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.lhhf-menu__link {
    display: inline-block;
    padding: 13px 21px;
    color: var(--lhhf-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    border-radius: var(--lhhf-curve-sm);
    transition: var(--lhhf-anim);
}

.lhhf-menu__link:hover,
.lhhf-menu__link.current {
    color: var(--lhhf-bronze);
    background: rgba(124,76,245,0.12);
}

.lhhf-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 26px;
    background: linear-gradient(135deg, var(--lhhf-bronze) 0%, var(--lhhf-bronze-dark) 100%);
    color: var(--lhhf-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 49px;
    transition: var(--lhhf-anim);
    box-shadow: var(--lhhf-glow-bronze);
}

.lhhf-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131,81,245,0.5);
    color: var(--lhhf-charcoal);
}

.lhhf-hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--lhhf-bronze);
    border-radius: var(--lhhf-curve-sm);
    cursor: pointer;
}

.lhhf-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--lhhf-bronze);
    transition: var(--lhhf-anim);
}

.lhhf-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lhhf-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.lhhf-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.lhhf-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--lhhf-primary-dark);
    transition: max-height 0.35s ease;
}

.lhhf-drawer.open {
    display: block;
    max-height: 420px;
    padding: 21px 34px;
}

.lhhf-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lhhf-drawer__nav a {
    display: block;
    padding: 17px 25px;
    color: var(--lhhf-text);
    font-size: 15px;
    border-radius: var(--lhhf-curve-sm);
}

.lhhf-drawer__nav a:hover {
    background: rgba(130,79,245,0.12);
    color: var(--lhhf-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.lhhf-content {
    min-height: calc(100vh - 200px);
}

.lhhf-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 9px 34px;
}

/* ================================================
   HERO BANNER
================================================ */
.lhhf-hero {
    text-align: center;
    padding: 0 0 15px;
    margin-bottom: 19px;
}

.lhhf-hero__tag {
    display: inline-block;
    padding: 11px 22px;
    background: rgba(129,69,245,0.18);
    color: var(--lhhf-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 47px;
    margin-bottom: 26px;
}

.lhhf-hero__heading {
    font-family: var(--lhhf-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--lhhf-text);
    margin-bottom: 23px;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.lhhf-hero__desc {
    font-size: 19px;
    color: var(--lhhf-text-dim);
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.lhhf-section-intro {
    text-align: center;
    margin-bottom: 41px;
}

.lhhf-section-intro__label {
    display: inline-block;
    padding: 10px 17px;
    background: rgba(128,78,245,0.18);
    color: var(--lhhf-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 48px;
    margin-bottom: 19px;
}

.lhhf-section-intro__title {
    font-family: var(--lhhf-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--lhhf-text);
    margin-bottom: 9px;
}

.lhhf-section-intro__text {
    font-size: 16px;
    color: var(--lhhf-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.lhhf-providers {
    margin: 47px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.lhhf-providers__grid {
    background: var(--lhhf-slate);
    border-radius: var(--lhhf-curve-lg);
    overflow: hidden;
    box-shadow: var(--lhhf-glow);
}

.lhhf-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 25px;
    padding: 14px 35px;
    background: #122528;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-align: center;
    align-items: center;
}

.lhhf-providers__head > div {
    text-align: center;
    color: #fff;
}

.lhhf-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 26px;
    padding: 21px 35px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #dedcdb;
    background: #ffffff;
    transition: background 0.2s ease;
}

.lhhf-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.lhhf-providers__row:last-child {
    border-bottom: none;
}

.lhhf-providers__row:hover {
    background: #e8edf5;
}

.lhhf-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #6339c4;
}

.lhhf-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.lhhf-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 11px 19px;
    border: 2px solid #eee;
}

.lhhf-company-cell__tagline {
    font-size: 12px;
    color: #5d3dd4;
    text-align: center;
    font-weight: 500;
}

.lhhf-perks {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
}

.lhhf-perk {
    display: block;
    padding: 5px 11px;
    background: #eaf2e8;
    color: #145817;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-align: center;
    width: fit-content;
    border: 1px solid #cae4cf;
}

.lhhf-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.lhhf-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.lhhf-stars__star {
    font-size: 17px;
}

.lhhf-stars__star.lit {
    color: #f59a0c;
}

.lhhf-stars__star.dim {
    color: #cdd5d7;
}

.lhhf-score__num {
    font-weight: 700;
    color: #314646;
    font-size: 17px;
}

.lhhf-score__bbb {
    font-size: 11px;
    color: #165625;
    font-weight: 700;
    background: #e8f5e9;
    padding: 3px 7px;
    border-radius: 5px;
}

.lhhf-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lhhf-invest__amount {
    font-weight: 700;
    color: #2a3a4b;
    font-size: 17px;
}

.lhhf-invest__label {
    font-size: 11px;
    color: #878c86;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lhhf-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lhhf-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 26px;
    background: linear-gradient(135deg, #6046d4 0%, #905ff5 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.11px;
    border-radius: 9px;
    transition: var(--lhhf-anim);
}

.lhhf-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(119,76,245,0.3);
}

.lhhf-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    color: #5a584b;
    border: 2px solid #cbcdd4;
    font-size: 11px;
    border-radius: 11px;
    transition: var(--lhhf-anim);
}

.lhhf-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #3b3836;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.lhhf-toc {
    background: linear-gradient(135deg, rgba(118,82,245,0.12) 0%, rgba(117,79,245,0.05) 100%);
    border: 2px solid var(--lhhf-bronze);
    border-radius: var(--lhhf-curve-lg);
    padding: 26px 39px;
    margin: 36px 0;
}

.lhhf-toc__title {
    font-family: var(--lhhf-font-heading);
    font-size: 22px;
    color: var(--lhhf-text);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.lhhf-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lhhf-toc__list li a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 19px;
    color: var(--lhhf-text);
    font-size: 14px;
    border-radius: var(--lhhf-curve-sm);
    transition: var(--lhhf-anim);
}

.lhhf-toc__list li a:hover {
    background: rgba(116,69,245,0.18);
    color: var(--lhhf-bronze);
}

.lhhf-toc__list li a::before {
    content: '\2192';
    color: var(--lhhf-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.lhhf-article {
    margin: 41px 0;
}

.lhhf-article h1 {
    font-family: var(--lhhf-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--lhhf-text);
    margin-bottom: 23px;
    text-align: center;
}

.lhhf-block {
    margin: 47px 0;
    padding: 33px;
    background: var(--lhhf-slate);
    border-radius: var(--lhhf-curve-lg);
}

.lhhf-block#overview {
    background: transparent;
    padding: 0;
}

.lhhf-block h2 {
    font-family: var(--lhhf-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--lhhf-text);
    margin-bottom: 25px;
}

.lhhf-block__body {
    font-size: 16px;
    line-height: 1.85;
}

.lhhf-block__body p {
    margin-bottom: 15px;
}

.lhhf-block__body ul,
.lhhf-block__body ol {
    margin: 20px 0;
    padding-left: 27px;
}

.lhhf-block__body li {
    margin-bottom: 15px;
}

.lhhf-block__body strong {
    color: var(--lhhf-text);
}

.lhhf-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 19px auto;
}

/* Content images */
.lhhf-content-image {
    margin: 34px 0;
    border-radius: var(--lhhf-curve-lg);
    overflow: hidden;
    box-shadow: var(--lhhf-glow);
}

.lhhf-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.lhhf-faq {
    padding: 63px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--lhhf-curve-lg);
    margin: 48px 0;
}

.lhhf-faq .lhhf-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 22px;
}

.lhhf-faq-header {
    text-align: center;
    margin-bottom: 39px;
}

.lhhf-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #f57969 0%, #8860f5 100%);
    color: white;
    padding: 7px 17px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 9px;
}

.lhhf-faq-title {
    font-size: 34px;
    font-weight: 700;
    color: #1d1134;
    margin: 0;
}

.lhhf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.lhhf-faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.lhhf-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.lhhf-faq-item.active .lhhf-faq-answer {
    max-height: 500px;
    padding: 0 26px 19px;
}

.lhhf-faq-item.active .lhhf-faq-icon {
    transform: rotate(180deg);
}

.lhhf-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #12152f;
    gap: 19px;
}

.lhhf-faq-question:hover {
    color: #f57362;
}

.lhhf-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #f5795c;
}

.lhhf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 26px;
}

.lhhf-faq-answer-inner {
    color: #45435f;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.lhhf-reviews {
    margin: 67px 0;
    overflow: hidden;
}

.lhhf-reviews__carousel {
    display: flex;
    gap: 29px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lhhf-reviews__carousel:hover {
    animation-play-state: paused;
}

.lhhf-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--lhhf-slate);
    padding: 31px;
    border-radius: var(--lhhf-curve-lg);
    border: 1px solid var(--lhhf-border);
}

.lhhf-review-card__header {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
}

.lhhf-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--lhhf-bronze) 0%, var(--lhhf-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--lhhf-charcoal);
    overflow: hidden;
}

.lhhf-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lhhf-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lhhf-review-card__name {
    font-weight: 600;
    color: var(--lhhf-text);
}

.lhhf-review-card__location {
    font-size: 13px;
    color: var(--lhhf-text-dim);
}

.lhhf-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--lhhf-success);
    color: var(--lhhf-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.lhhf-review-card__stars {
    margin-bottom: 18px;
}

.lhhf-review-card__text {
    font-size: 15px;
    color: var(--lhhf-text);
    margin-bottom: 19px;
    font-style: italic;
    line-height: 1.7;
}

.lhhf-review-card__date {
    font-size: 12px;
    color: var(--lhhf-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.lhhf-footer {
    background: linear-gradient(180deg, var(--lhhf-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--lhhf-border);
    padding: 63px 0 40px;
    margin-top: 61px;
}

.lhhf-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 31px;
}

.lhhf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 63px;
    margin-bottom: 51px;
    padding-bottom: 38px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.lhhf-footer__brand-name {
    font-family: var(--lhhf-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--lhhf-text);
    margin-bottom: 11px;
}

.lhhf-footer__desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--lhhf-text-dim);
    max-width: 360px;
}

.lhhf-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--lhhf-text);
    margin-bottom: 21px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.lhhf-footer__links {
    list-style: none;
}

.lhhf-footer__links li {
    margin-bottom: 15px;
}

.lhhf-footer__links a {
    color: var(--lhhf-text-dim);
    font-size: 15px;
    transition: var(--lhhf-anim);
}

.lhhf-footer__links a:hover {
    color: var(--lhhf-bronze);
}

.lhhf-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.lhhf-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.lhhf-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.lhhf-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 13px 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .lhhf-providers__head {
        display: none;
    }
    .lhhf-providers__row {
        grid-template-columns: 1fr;
        padding: 24px 17px;
        text-align: center;
    }
    .lhhf-company-cell__logo {
        max-width: 200px;
    }
    .lhhf-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .lhhf-menu {
        display: none;
    }
    .lhhf-hamburger {
        display: flex;
        margin-left: auto;
    }
    .lhhf-topbar__action {
        display: none;
    }
    .lhhf-hero__heading {
        font-size: 32px;
    }
    .lhhf-hero__desc {
        font-size: 16px;
    }
    .lhhf-toc__list {
        grid-template-columns: 1fr;
    }
    .lhhf-footer__grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }
    .lhhf-article h1 {
        font-size: 32px;
    }
    .lhhf-block h2 {
        font-size: 24px;
    }
    .lhhf-sticky-bar {
        flex-direction: column;
        gap: 10px;
        padding: 7px 15px;
        text-align: center;
    }
    .lhhf-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .lhhf-faq { padding: 43px 0; }
    .lhhf-faq-title { font-size: 24px; }
    .lhhf-faq-question { font-size: 15px; padding: 18px 19px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.lhhf-hero__tag { margin-bottom: 5px !important; margin-top: 0 !important; }
.lhhf-hero__heading { margin-bottom: 5px !important; margin-top: 0 !important; }
h1 { font-size: clamp(20px, 3vw, 32px) !important; margin-bottom: 12px !important; }
.lhhf-hero__desc { margin-bottom: 9px !important; }
.lhhf-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 14px !important; border: none !important; }

body.lhhf-page { padding-bottom: 69px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.lhhf-page {
    background: #F3E5F5;
    color: #122b21;
}
.lhhf-content { color: #0a2f30; }
.lhhf-hero__heading { color: #112e2c; }
.lhhf-hero__desc { color: #754ec1; }
.lhhf-section-intro__title { color: #0b2320; }
.lhhf-section-intro__text { color: #745bc9; }
.lhhf-block { background: #EDE7F6; }
.lhhf-block#overview { background: transparent; }
.lhhf-block h2 { color: #0a2e26; }
.lhhf-block__body { color: #0d1e2e; }
.lhhf-block__body strong { color: #0a2329; }
.lhhf-article h1 { color: #0c2c24; }
.lhhf-toc { background: rgba(125,73,245,0.05); }
.lhhf-toc__title { color: #10301f; }
.lhhf-toc__list li a { color: #0a2e2d; }
.lhhf-review-card { background: #fff; border-color: #d6bae9; }
.lhhf-review-card__name { color: #0a2623; }
.lhhf-review-card__text { color: #132a21; }
.lhhf-review-card__location { color: #7c5fca; }
.lhhf-review-card__date { color: #865dc6; }
.lhhf-wrapper { color: #0a1e27; }
.lhhf-faq-title { color: #0b2620; }
.lhhf-faq-question { color: #0a2a2f; }
.lhhf-faq-answer-inner { color: #7e58c5; }
.lhhf-footer {
    background: linear-gradient(180deg, #0a2e26 0%, #210a5d 100%);
}
