/* Boeing Diamond Style - Auto-themed */
:root {
    --lmfh-primary: #122926;
    --lmfh-accent: #f5755f;
    --lmfh-gold: #f5786e;
    --lmfh-gold-light: #55abf5;
    --lmfh-gold-dark: #3580c3;
    --lmfh-bg: #F5F9FF;
    --lmfh-bg-dark: #1a2732;
    --lmfh-bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    --lmfh-text: #0f47a2;
    --lmfh-text-light: #626fbc;
    --lmfh-border: #b7e6f2;
    --lmfh-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --lmfh-shadow-hover: rgba(10,55,103,0.2);
    --lmfh-shadow-gold: rgba(201,163,90,0.25);
    --lmfh-success: #2d9f4c;
    --lmfh-danger: #d73147;
    --lmfh-overlay: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--lmfh-text);
    background: var(--lmfh-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(10,109,198,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(206,166,100,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(10,106,199,0.008) 3px, rgba(10,96,208,0.008) 6px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.lmfh-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 31px;
}

/* Price Ticker */
.lmfh-ticker {
    background: linear-gradient(135deg, #0a3b6e 0%, #0a3783 50%, #0a2e65 100%);
    color: #ffffff;
    padding: 18px 0;
    border-bottom: 2px solid rgba(195,169,93,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(10,58,107,0.35);
}

.lmfh-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
    animation: lmfh-shimmer 4s infinite;
}

@keyframes lmfh-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lmfh-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
    padding: 0 26px;
}

.lmfh-ticker-item {
    display: flex;
    align-items: center;
    gap: 17px;
    white-space: nowrap;
    padding: 10px 17px;
    border-radius: 12px;
    transition: all 0.35s;
    position: relative;
}

.lmfh-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(193,166,94,0.12);
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.35s;
}

.lmfh-ticker-item:hover::before {
    opacity: 1;
}

.lmfh-ticker-item:hover {
    transform: translateY(-3px);
}

.lmfh-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.lmfh-ticker-price {
    font-size: 19px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lmfh-gold), var(--lmfh-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(199,163,95,0.6);
    position: relative;
}

.lmfh-ticker-change {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lmfh-ticker-change svg {
    width: 12px;
    height: 13px;
    flex-shrink: 0;
}

.lmfh-ticker-change--up {
    color: var(--lmfh-success);
}

.lmfh-ticker-change--down {
    color: var(--lmfh-danger);
}

.lmfh-ticker-separator {
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
}

.lmfh-ticker-update {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.lmfh-ticker-live {
    width: 11px;
    height: 9px;
    background: var(--lmfh-success);
    border-radius: 50%;
    display: inline-block;
    animation: lmfh-pulse 2.5s infinite;
}

@keyframes lmfh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Header */
.lmfh-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-bottom: 3px solid var(--lmfh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(26px) saturate(190%);
    box-shadow: 0 4px 38px rgba(10,44,95,0.1);
    position: relative;
}

.lmfh-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
}

.lmfh-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 17px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lmfh-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--lmfh-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.7px;
}

.lmfh-logo-icon {
    width: 42px;
    height: 44px;
    background: linear-gradient(135deg, var(--lmfh-primary) 0%, var(--lmfh-accent) 50%, var(--lmfh-gold-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 5px 18px var(--lmfh-shadow-gold);
    position: relative;
    overflow: hidden;
}

.lmfh-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: lmfh-rotate 3.5s infinite;
}

@keyframes lmfh-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lmfh-logo-text {
    font-weight: 600;
}

.lmfh-nav {
    display: flex;
    gap: 39px;
    align-items: center;
}

.lmfh-nav-link {
    color: var(--lmfh-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 8px 21px;
    border-radius: 10px;
}

.lmfh-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,108,198,0.12), rgba(207,165,100,0.08));
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.45s;
    z-index: -1;
}

.lmfh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 85%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
    border-radius: 1px;
    transition: transform 0.45s;
}

.lmfh-nav-link:hover {
    color: var(--lmfh-accent);
    transform: translateY(-3px);
}

.lmfh-nav-link:hover::before {
    opacity: 1;
}

.lmfh-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.lmfh-nav-link--active {
    color: var(--lmfh-accent);
    background: linear-gradient(135deg, rgba(10,104,199,0.18), rgba(205,162,101,0.12));
    box-shadow: 0 3px 12px rgba(10,101,200,0.25);
}

.lmfh-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), var(--lmfh-gold-light), var(--lmfh-gold), transparent);
    height: 4px;
}

.lmfh-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.lmfh-menu-toggle.active .lmfh-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.lmfh-menu-toggle.active .lmfh-menu-line:nth-child(2) {
    opacity: 0;
}

.lmfh-menu-toggle.active .lmfh-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.lmfh-menu-line {
    width: 26px;
    height: 3px;
    background: var(--lmfh-primary);
    transition: all 0.35s ease;
}

.lmfh-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 24px 25px;
    background: var(--lmfh-bg);
    border-top: 2px solid var(--lmfh-border);
}

.lmfh-mobile-nav.active {
    display: flex;
}

.lmfh-mobile-link {
    padding: 13px 0;
    color: var(--lmfh-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid var(--lmfh-border);
}

.lmfh-mobile-link:last-child {
    border-bottom: none;
}

/* Breadcrumb */
.lmfh-breadcrumb {
    padding: 25px 0;
    background: linear-gradient(135deg, rgba(10,107,209,0.05) 0%, rgba(194,165,94,0.03) 100%);
    border-bottom: 2px solid var(--lmfh-border);
}

.lmfh-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.lmfh-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--lmfh-text-light);
}

.lmfh-breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: var(--lmfh-gold);
    font-weight: 700;
    font-size: 18px;
}

.lmfh-breadcrumb-link {
    color: var(--lmfh-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lmfh-breadcrumb-link:hover {
    color: var(--lmfh-primary);
    text-decoration: underline;
}

.lmfh-breadcrumb-current {
    color: var(--lmfh-text);
    font-weight: 600;
}

/* Hero Section */
.lmfh-hero {
    background: linear-gradient(135deg, #0a3a61 0%, #0a3776 25%, #0a2e6b 50%, #0a3f81 75%, #0a3662 100%);
    color: #ffffff;
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: lmfh-gradient-shift 15s ease infinite;
}

@keyframes lmfh-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.lmfh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(193,171,103,0.18) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(10,94,202,0.12) 0%, transparent 50%);
    animation: lmfh-pulse 5s ease-in-out infinite;
}

.lmfh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 120px,
        rgba(199,167,104,0.04) 120px,
        rgba(198,174,96,0.04) 240px
    );
    animation: lmfh-drift 25s linear infinite;
}

@keyframes lmfh-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(120px, 120px); }
}

.lmfh-hero-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 27px;
    position: relative;
    z-index: 2;
}

.lmfh-hero-badge {
    display: inline-block;
    padding: 17px 33px;
    background: linear-gradient(135deg, rgba(197,164,89,0.25) 0%, rgba(10,103,204,0.18) 100%);
    border: 3px solid rgba(203,161,90,0.45);
    border-radius: 58px;
    font-size: 14px;
    font-weight: 700;
    color: var(--lmfh-gold-light);
    text-transform: uppercase;
    letter-spacing: 2.1px;
    margin-bottom: 38px;
    box-shadow: 0 4px 28px rgba(202,167,98,0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.lmfh-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: lmfh-shine 3.5s infinite;
}

@keyframes lmfh-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.lmfh-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 31px 0;
    color: #ffffff;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.6),
        0 5px 25px rgba(206,176,100,0.35),
        0 0 45px rgba(205,167,93,0.15);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--lmfh-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: lmfh-title-glow 3.5s ease-in-out infinite;
}

@keyframes lmfh-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.lmfh-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 43px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lmfh-hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.lmfh-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 38px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
}

.lmfh-btn-primary {
    background: linear-gradient(135deg, var(--lmfh-gold) 0%, var(--lmfh-gold-light) 50%, var(--lmfh-gold-dark) 100%);
    color: var(--lmfh-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 30px rgba(195,163,94,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lmfh-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s;
}

.lmfh-btn-primary:hover::before {
    left: 100%;
}

.lmfh-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(200,166,104,0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.lmfh-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.lmfh-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.6s;
}

.lmfh-btn-secondary:hover::before {
    left: 100%;
}

.lmfh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Star Rating Component */
.lmfh-rating-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 48px 0;
    border-top: 3px solid rgba(201,162,99,0.25);
    border-bottom: 3px solid rgba(208,169,92,0.25);
    position: relative;
    overflow: hidden;
}

.lmfh-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(10,108,207,0.025) 55px, rgba(10,98,200,0.025) 56px);
    pointer-events: none;
}

.lmfh-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85);
    padding: 22px 48px;
    border-radius: 55px;
    box-shadow: 0 7px 37px rgba(10,44,99,0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(194,174,95,0.25);
    position: relative;
    z-index: 1;
}

.lmfh-rating-label {
    font-size: 15px;
    color: var(--lmfh-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lmfh-stars {
    display: flex;
    gap: 6px;
}

.lmfh-star {
    font-size: 22px;
    color: #dededd;
}

.lmfh-star--filled {
    color: var(--lmfh-gold);
    text-shadow: 0 0 12px rgba(193,165,103,0.6);
    animation: lmfh-star-twinkle 2.5s ease-in-out infinite;
}

@keyframes lmfh-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.lmfh-rating-number {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lmfh-primary), var(--lmfh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 9px;
}

.lmfh-rating-number::before,
.lmfh-rating-number::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
}

.lmfh-rating-number::before {
    left: -32px;
}

.lmfh-rating-number::after {
    right: -32px;
}

.lmfh-rating-reviews {
    font-size: 15px;
    color: var(--lmfh-text-light);
}

/* Section Dividers */
.lmfh-section-divider {
    height: 110px;
    position: relative;
    margin: 85px 0;
    overflow: hidden;
}

.lmfh-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(200,171,96,0.25) 20%, 
        var(--lmfh-gold) 50%, 
        rgba(199,161,89,0.25) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.lmfh-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--lmfh-gold), var(--lmfh-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--lmfh-primary);
    box-shadow: 
        0 0 35px rgba(198,168,97,0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.35);
}

/* Main Content */
.lmfh-main {
    padding: 64px 0;
    position: relative;
}

.lmfh-article {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.lmfh-article::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--lmfh-gold) 10%, 
        var(--lmfh-gold-light) 50%, 
        var(--lmfh-gold) 90%, 
        transparent
    );
    border-radius: 4px;
    opacity: 0.35;
}

@media (max-width: 768px) {
    .lmfh-article::before {
        display: none;
    }
}

.lmfh-intro {
    margin-bottom: 52px;
    padding: 37px;
    background: linear-gradient(135deg, rgba(10,104,198,0.08) 0%, rgba(202,161,99,0.05) 100%);
    border-radius: 17px;
    border-left: 7px solid var(--lmfh-gold);
    box-shadow: 
        0 5px 25px rgba(10,49,97,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
}

.lmfh-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 110px;
    background: radial-gradient(circle, rgba(10,97,200,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.lmfh-lead {
    font-size: 25px;
    line-height: 1.85;
    color: var(--lmfh-text);
    margin-bottom: 27px;
    font-weight: 500;
    position: relative;
    padding-left: 27px;
}

.lmfh-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 65px;
    font-family: 'Inter', sans-serif;
    color: var(--lmfh-gold);
    opacity: 0.35;
    line-height: 1;
}

.lmfh-article h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lmfh-primary) 0%, var(--lmfh-accent) 50%, var(--lmfh-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 65px 0 32px 0;
    line-height: 1.35;
    position: relative;
    padding-bottom: 26px;
}

.lmfh-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--lmfh-gold), var(--lmfh-gold-light), transparent);
    border-radius: 4px;
}

.lmfh-article h3 {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--lmfh-primary);
    margin: 48px 0 24px 0;
}

.lmfh-article p {
    margin-bottom: 25px;
    line-height: 1.95;
    color: var(--lmfh-text);
    position: relative;
    padding-left: 26px;
}

.lmfh-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: var(--lmfh-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(206,170,101,0.6);
    opacity: 0.65;
}

.lmfh-article p:first-of-type::before {
    display: none;
}

.lmfh-list,
.lmfh-list-ordered {
    margin: 38px 0;
    padding-left: 36px;
    position: relative;
}

.lmfh-list::before,
.lmfh-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--lmfh-gold), var(--lmfh-gold-light), var(--lmfh-gold-dark));
    border-radius: 4px;
}

.lmfh-list li,
.lmfh-list-ordered li {
    margin-bottom: 17px;
    line-height: 1.85;
    color: var(--lmfh-text);
    padding-left: 17px;
    position: relative;
    transition: all 0.35s;
}

.lmfh-list li::marker {
    color: var(--lmfh-gold);
    font-weight: 700;
}

.lmfh-list li:hover,
.lmfh-list-ordered li:hover {
    color: var(--lmfh-primary);
    transform: translateX(6px);
}

.lmfh-list-ordered {
    list-style: decimal;
}

.lmfh-image-wrapper {
    margin: 53px 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 18px 55px var(--lmfh-shadow),
        0 10px 35px rgba(10,58,99,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
    border: 4px solid rgba(195,173,95,0.25);
    background: linear-gradient(135deg, rgba(10,96,210,0.05) 0%, rgba(193,170,96,0.03) 100%);
}

.lmfh-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--lmfh-gold), var(--lmfh-gold-light), var(--lmfh-gold-dark), var(--lmfh-gold));
    border-radius: 24px;
    z-index: -1;
    opacity: 0.35;
    animation: lmfh-border-glow 3.5s ease-in-out infinite;
}

.lmfh-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200,176,104,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.lmfh-image-wrapper:hover::after {
    opacity: 1;
}

@keyframes lmfh-border-glow {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.65; }
}

.lmfh-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
    opacity: 0;
    filter: blur(4px);
}

.lmfh-article-image.loaded {
    opacity: 1;
    filter: blur(0);
}

.lmfh-image-wrapper:hover .lmfh-article-image {
    transform: scale(1.06);
}

.lmfh-image-wrapper .lmfh-image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(199,166,97,0.2);
    border-top-color: var(--lmfh-gold);
    border-radius: 50%;
    animation: lmfh-spin 1s linear infinite;
    z-index: 2;
}

@keyframes lmfh-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pros Cons List Component */
.lmfh-pros-cons {
    margin: 78px 0;
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 30%, #f5f7fa 70%, #ffffff 100%);
    border-radius: 23px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 45px rgba(10,55,94,0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(204,169,90,0.12);
}

.lmfh-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 38px;
}

.lmfh-pros-section,
.lmfh-cons-section {
    position: relative;
}

.lmfh-pros-header,
.lmfh-cons-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 29px;
    padding-bottom: 22px;
    border-bottom: 2px solid var(--lmfh-border);
}

.lmfh-pros-icon,
.lmfh-cons-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
}

.lmfh-pros-icon {
    background: linear-gradient(135deg, var(--lmfh-success), #34c44d);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(42,173,71,0.35);
}

.lmfh-cons-icon {
    background: linear-gradient(135deg, var(--lmfh-danger), #e75e6e);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(221,50,64,0.35);
}

.lmfh-pros-title,
.lmfh-cons-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--lmfh-primary);
}

.lmfh-pros-list,
.lmfh-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lmfh-pros-item,
.lmfh-cons-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 23px;
    margin-bottom: 14px;
    border-radius: 9px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.lmfh-pros-item::before,
.lmfh-cons-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.lmfh-pros-item:hover::before,
.lmfh-cons-item:hover::before {
    left: 100%;
}

.lmfh-pros-item {
    background: linear-gradient(135deg, rgba(47,160,65,0.08) 0%, rgba(46,167,73,0.04) 100%);
    border-left: 4px solid var(--lmfh-success);
}

.lmfh-cons-item {
    background: linear-gradient(135deg, rgba(225,59,66,0.08) 0%, rgba(224,49,74,0.04) 100%);
    border-left: 4px solid var(--lmfh-danger);
}

.lmfh-pros-item:hover,
.lmfh-cons-item:hover {
    transform: translateX(6px);
    box-shadow: 0 5px 20px rgba(10,54,100,0.1);
}

.lmfh-pros-check,
.lmfh-cons-x {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-top: 3px;
}

.lmfh-pros-check {
    background: var(--lmfh-success);
    color: #ffffff;
}

.lmfh-cons-x {
    background: var(--lmfh-danger);
    color: #ffffff;
}

.lmfh-pros-text,
.lmfh-cons-text {
    flex: 1;
    color: var(--lmfh-text);
    line-height: 1.75;
    font-size: 16px;
}

/* FAQ Accordion */
.lmfh-faq-section {
    margin: 73px 0;
}

.lmfh-faq-header {
    text-align: center;
    margin-bottom: 66px;
    position: relative;
    padding-bottom: 33px;
}

.lmfh-faq-header::before {
    content: '❓';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
    opacity: 0.12;
    filter: blur(2px);
}

.lmfh-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), var(--lmfh-gold-light), var(--lmfh-gold), transparent);
    border-radius: 4px;
}

.lmfh-faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--lmfh-primary);
    margin-bottom: 12px;
}

.lmfh-faq-subtitle {
    font-size: 21px;
    color: var(--lmfh-text-light);
}

.lmfh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lmfh-faq-item {
    background: linear-gradient(135deg, var(--lmfh-bg) 0%, #fafafa 100%);
    border: 3px solid var(--lmfh-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 18px rgba(10,44,108,0.08);
    position: relative;
}

.lmfh-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(194,168,96,0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.lmfh-faq-item:hover::after,
.lmfh-faq-item.active::after {
    opacity: 1;
}

.lmfh-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--lmfh-gold), var(--lmfh-gold-dark));
    transform: scaleY(0);
    transition: transform 0.45s;
}

.lmfh-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(193,175,104,0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.lmfh-faq-item:hover::after,
.lmfh-faq-item.active::after {
    opacity: 1;
}

.lmfh-faq-item:hover {
    border-color: rgba(200,165,97,0.55);
    box-shadow: 
        0 10px 30px var(--lmfh-shadow),
        0 0 0 1px rgba(199,171,89,0.15);
    transform: translateX(5px);
}

.lmfh-faq-item:hover::before,
.lmfh-faq-item.active::before {
    transform: scaleY(1);
}

.lmfh-faq-item.active {
    border-color: var(--lmfh-gold);
    box-shadow: 
        0 14px 40px var(--lmfh-shadow),
        0 5px 25px var(--lmfh-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.lmfh-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
    padding: 29px 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.35s ease;
}

.lmfh-faq-question:hover {
    background: rgba(197,168,90,0.08);
}

.lmfh-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--lmfh-primary);
    line-height: 1.45;
}

.lmfh-faq-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204,174,99,0.18), rgba(10,97,198,0.12));
    border-radius: 50%;
    color: var(--lmfh-gold);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 10px rgba(202,171,100,0.25);
    border: 2px solid rgba(201,161,92,0.25);
}

.lmfh-faq-item.active .lmfh-faq-icon {
    transform: rotate(180deg) scale(1.12);
    background: linear-gradient(135deg, var(--lmfh-gold), var(--lmfh-gold-light));
    color: var(--lmfh-primary);
    box-shadow: 
        0 5px 18px var(--lmfh-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lmfh-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.lmfh-faq-item.active .lmfh-faq-answer {
    max-height: 1200px;
}

.lmfh-faq-answer-content {
    padding: 0 35px 25px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--lmfh-text);
}

.lmfh-faq-answer-content p {
    margin-bottom: 13px;
}

/* Footer */
.lmfh-footer {
    background: linear-gradient(135deg, #0a396e 0%, #0a3683 50%, #0a2d65 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 85px 0 46px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.lmfh-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
}

.lmfh-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 120px, rgba(206,164,102,0.025) 120px, rgba(205,170,95,0.025) 121px);
    animation: lmfh-drift 35s linear infinite;
}

.lmfh-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 58px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
    padding-bottom: 43px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.12);
}

.lmfh-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
}

.lmfh-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
}

.lmfh-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.lmfh-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.lmfh-footer-links {
    list-style: none;
    padding: 0;
}

.lmfh-footer-links li {
    margin-bottom: 15px;
}

.lmfh-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.35s ease;
    position: relative;
    padding-left: 21px;
    display: inline-block;
}

.lmfh-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.35s;
    color: var(--lmfh-gold);
}

.lmfh-footer-links a:hover {
    color: var(--lmfh-gold);
    transform: translateX(6px);
}

.lmfh-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.lmfh-footer-bottom {
    padding-top: 38px;
    border-top: 3px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* Scroll Progress */
.lmfh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--lmfh-gold), var(--lmfh-gold-light), var(--lmfh-gold));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 12px rgba(199,176,98,0.6);
}

/* Additional Detail Elements */
.lmfh-detail-accent {
    position: relative;
    padding-left: 21px;
}

.lmfh-detail-accent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--lmfh-gold), var(--lmfh-accent), var(--lmfh-gold));
    border-radius: 2px;
    box-shadow: 0 0 13px rgba(198,166,90,0.4);
}

.lmfh-text-highlight {
    background: linear-gradient(135deg, rgba(197,173,99,0.15) 0%, rgba(10,96,198,0.1) 100%);
    padding: 3px 6px;
    border-radius: 7px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.lmfh-text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lmfh-gold), transparent);
    opacity: 0.5;
}

.lmfh-card-hover-effect {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.lmfh-card-hover-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--lmfh-gold), var(--lmfh-accent), var(--lmfh-gold));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.lmfh-card-hover-effect:hover::before {
    opacity: 0.2;
}

.lmfh-card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(10,51,105,0.15);
}

.lmfh-gradient-text {
    background: linear-gradient(135deg, var(--lmfh-primary) 0%, var(--lmfh-accent) 50%, var(--lmfh-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.lmfh-gradient-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lmfh-gold), var(--lmfh-accent), var(--lmfh-gold));
    border-radius: 3px;
    opacity: 0.6;
}

.lmfh-pulse-animation {
    animation: lmfh-pulse-glow 2s ease-in-out infinite;
}

@keyframes lmfh-pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(202,176,92,0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(201,166,101,0.6);
    }
}

.lmfh-shimmer-effect {
    position: relative;
    overflow: hidden;
}

.lmfh-shimmer-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: lmfh-shimmer-slide 3s infinite;
}

@keyframes lmfh-shimmer-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.lmfh-3d-effect {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.lmfh-3d-effect:hover {
    transform: rotateY(2deg) rotateX(2deg);
}

/* Responsive */
@media (max-width: 768px) {
    .lmfh-ticker-track {
        gap: 25px;
        font-size: 15px;
    }

    .lmfh-ticker-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .lmfh-ticker-separator {
        display: none;
    }

    .lmfh-menu-toggle {
        display: flex;
    }

    .lmfh-nav {
        display: none;
    }

    .lmfh-hero-title {
        font-size: 38px;
    }

    .lmfh-hero-subtitle {
        font-size: 17px;
    }

    .lmfh-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lmfh-btn {
        width: 100%;
        justify-content: center;
    }

    .lmfh-article h2 {
        font-size: 30px;
    }

    .lmfh-pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 41px;
        padding: 0 23px;
    }

    .lmfh-faq-title {
        font-size: 30px;
    }

    .lmfh-faq-question {
        padding: 22px;
    }

    .lmfh-faq-answer-content {
        padding: 0 19px 24px;
    }
}

/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 6px;
    margin-bottom: 11px;
    border: 1px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 12px 23px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 8px 27px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 9px 14px;
        font-size: 16px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 9px !important;
        margin: 0 auto 10px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 15px 20px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


/* Max width 1500px for desktop */
.lmfh-wrapper, .lmfh-content, .lmfh-hero-inner, .lmfh-companies-container, 
.lmfh-article, .lmfh-container, .lmfh-footer-inner, .lmfh-main {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.lmfh-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.lmfh-td-action {
    text-align: center !important;
}
.lmfh-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 13px !important;
}
