/* Fidelity Supreme Style - Auto-themed */
:root {
    --lhpn-navy: #0a162a;
    --lhpn-navy-light: #463e59;
    --lhpn-navy-dark: #0b1420;
    --lhpn-navy-deeper: #15232c;
    --lhpn-bronze: #184a68;
    --lhpn-bronze-light: #3e5f85;
    --lhpn-bronze-dark: #0c394a;
    --lhpn-bronze-glow: rgba(168,130,84,0.25);
    --lhpn-white: #ffffff;
    --lhpn-off-white: #fdfcfb;
    --lhpn-gray-50: #f8fafc;
    --lhpn-gray-100: #f1f5f9;
    --lhpn-gray-200: #e5e7f1;
    --lhpn-gray-300: #c3cee7;
    --lhpn-gray-400: #90a9af;
    --lhpn-gray-500: #6a7586;
    --lhpn-gray-600: #425069;
    --lhpn-gray-700: #383f5a;
    --lhpn-gray-800: #1d2131;
    --lhpn-gray-900: #171d28;
    --lhpn-success: #0a966c;
    --lhpn-success-light: #17bd8a;
    --lhpn-error: #d32420;
    --lhpn-warning: #f5960a;
    --lhpn-radius-xs: 5px;
    --lhpn-radius-sm: 3px;
    --lhpn-radius-md: 11px;
    --lhpn-radius-lg: 13px;
    --lhpn-radius-xl: 22px;
    --lhpn-shadow-xs: 0 2px 2px rgba(0,0,0,0.04);
    --lhpn-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --lhpn-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --lhpn-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --lhpn-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
    --lhpn-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --lhpn-shadow-bronze: 0 4px 14px rgba(165,119,78,0.2);
    --lhpn-shadow-navy: 0 4px 14px rgba(28,60,99,0.15);
    --lhpn-transition-fast: 0.15s ease;
    --lhpn-transition: 0.25s ease;
    --lhpn-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --lhpn-font-sans: 'Source Sans Pro', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --lhpn-font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

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

body {
    font-family: var(--lhpn-font-sans);
    font-size: 17px;
    line-height: 1.75;
    color: var(--lhpn-gray-700);
    background: var(--lhpn-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(163,116,79,0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(26,56,100,0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--lhpn-off-white) 0%, var(--lhpn-gray-50) 100%);
    pointer-events: none;
    z-index: -1;
}

.lhpn-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 0 28px;
}

/* Skip to Content - Accessibility */
.lhpn-skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lhpn-navy);
    color: var(--lhpn-white);
    padding: 14px 23px;
    border-radius: var(--lhpn-radius-md);
    z-index: 9999;
    transition: top var(--lhpn-transition);
}

.lhpn-skip-link:focus {
    top: 10px;
}

/* Progress Bar */
.lhpn-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Navigation Bar */
.lhpn-navbar {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--lhpn-gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--lhpn-shadow-sm);
    transition: box-shadow var(--lhpn-transition), background var(--lhpn-transition);
}

.lhpn-navbar.scrolled {
    box-shadow: var(--lhpn-shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

.lhpn-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 30px;
    max-width:100%;
    margin: 0 auto;
}

.lhpn-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--lhpn-navy);
    transition: transform var(--lhpn-transition);
}

.lhpn-brand:hover {
    transform: translateY(-1px);
}

.lhpn-brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, var(--lhpn-navy) 0%, var(--lhpn-navy-light) 100%);
    border-radius: var(--lhpn-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lhpn-bronze-light);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.5px;
    box-shadow: var(--lhpn-shadow-navy);
    position: relative;
    overflow: hidden;
}

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

.lhpn-brand:hover .lhpn-brand-icon::before {
    left: 100%;
}

.lhpn-brand-name {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, var(--lhpn-navy) 0%, var(--lhpn-navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lhpn-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lhpn-menu-link {
    padding: 13px 19px;
    color: var(--lhpn-gray-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--lhpn-radius-sm);
    transition: var(--lhpn-transition);
    position: relative;
}

.lhpn-menu-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--lhpn-bronze);
    transform: scaleX(0);
    transition: transform var(--lhpn-transition);
    border-radius: 1px;
}

.lhpn-menu-link:hover {
    color: var(--lhpn-navy);
    background: var(--lhpn-gray-100);
}

.lhpn-menu-link:hover::after {
    transform: scaleX(1);
}

.lhpn-menu-link--active {
    background: var(--lhpn-navy);
    color: var(--lhpn-white);
    box-shadow: var(--lhpn-shadow-navy);
}

.lhpn-menu-link--active::after {
    display: none;
}

.lhpn-menu-link--active:hover {
    background: var(--lhpn-navy-light);
    color: var(--lhpn-white);
}

/* Burger Menu */
.lhpn-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 11px;
    border-radius: var(--lhpn-radius-sm);
    transition: background var(--lhpn-transition);
}

.lhpn-burger:hover {
    background: var(--lhpn-gray-100);
}

.lhpn-burger-line {
    width: 24px;
    height: 2.5px;
    background: var(--lhpn-navy);
    border-radius: 2px;
    transition: var(--lhpn-transition);
    transform-origin: center;
}

.lhpn-burger.active .lhpn-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lhpn-burger.active .lhpn-burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.lhpn-burger.active .lhpn-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.lhpn-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 6px 23px 24px;
    background: var(--lhpn-white);
    border-top: 1px solid var(--lhpn-gray-200);
    animation: lhpn-slideDown 0.3s ease;
}

@keyframes lhpn-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lhpn-mobile-menu.active {
    display: flex;
}

.lhpn-mobile-link {
    padding: 13px 19px;
    color: var(--lhpn-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--lhpn-gray-100);
    transition: var(--lhpn-transition);
    border-radius: var(--lhpn-radius-sm);
    margin: 3px 0;
}

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

.lhpn-mobile-link:hover {
    background: var(--lhpn-gray-50);
    color: var(--lhpn-navy);
    padding-left: 22px;
}

/* Hero Banner */
.lhpn-hero {
    background: linear-gradient(135deg, var(--lhpn-navy-deeper) 0%, var(--lhpn-navy-dark) 25%, var(--lhpn-navy) 50%, var(--lhpn-navy-light) 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.lhpn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(166,131,77,0.06)" stroke-width="0.4" x="0" y="0" width="20" height="20"/></svg>') repeat,
        radial-gradient(ellipse at 20% 30%, rgba(173,122,82,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(172,128,75,0.08) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%, 100% 100%;
}

.lhpn-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--lhpn-off-white), transparent);
    pointer-events: none;
}

.lhpn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 31px;
}

.lhpn-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(171,118,83,0.15);
    border: 1px solid rgba(170,125,80,0.35);
    color: var(--lhpn-bronze-light);
    padding: 12px 23px;
    border-radius: 33px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 31px;
    backdrop-filter: blur(4px);
}

.lhpn-hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--lhpn-bronze-light);
    border-radius: 50%;
    animation: lhpn-pulse 2s ease-in-out infinite;
}

@keyframes lhpn-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.lhpn-hero-heading {
    font-family: var(--lhpn-font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--lhpn-white);
    line-height: 1.15;
    margin-bottom: 27px;
    letter-spacing: -2px;
    text-shadow: 0 1px 23px rgba(0,0,0,0.2);
}

.lhpn-hero-heading span {
    color: var(--lhpn-bronze-light);
}

.lhpn-hero-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.lhpn-hero-btns {
    display: flex;
    gap: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.lhpn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--lhpn-radius-sm);
    transition: var(--lhpn-transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.lhpn-btn--primary {
    background: linear-gradient(135deg, var(--lhpn-bronze) 0%, var(--lhpn-bronze-light) 100%);
    color: var(--lhpn-white);
    box-shadow: var(--lhpn-shadow-bronze);
}

.lhpn-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158,118,78,0.35);
}

.lhpn-btn--outline {
    background: transparent;
    color: var(--lhpn-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(5px);
}

.lhpn-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.lhpn-btn--navy {
    background: var(--lhpn-navy);
    color: var(--lhpn-white);
    box-shadow: var(--lhpn-shadow-navy);
}

.lhpn-btn--navy:hover {
    background: var(--lhpn-navy-light);
    transform: translateY(-2px);
}

/* Trust Indicators */
.lhpn-trust-bar {
    background: var(--lhpn-white);
    border-bottom: 1px solid var(--lhpn-gray-200);
    padding: 20px 0;
}

.lhpn-trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 37px;
    flex-wrap: wrap;
}

.lhpn-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lhpn-gray-600);
    font-size: 13px;
    font-weight: 500;
}

.lhpn-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--lhpn-success);
}

/* CTA Banner Component */
.lhpn-cta-banner {
    background: linear-gradient(135deg, var(--lhpn-bronze-dark) 0%, var(--lhpn-bronze) 50%, var(--lhpn-bronze-light) 100%);
    padding: 30px 41px;
    border-radius: var(--lhpn-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 52px 0;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: var(--lhpn-shadow-xl), 0 0 40px rgba(162,127,84,0.15);
}

.lhpn-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lhpn-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lhpn-cta-text {
    color: var(--lhpn-white);
    position: relative;
    z-index: 1;
}

.lhpn-cta-title {
    font-family: var(--lhpn-font-serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lhpn-cta-subtitle {
    font-size: 12px;
    opacity: 0.92;
}

.lhpn-cta-btn {
    background: var(--lhpn-white);
    color: var(--lhpn-bronze-dark);
    padding: 18px 35px;
    border-radius: var(--lhpn-radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--lhpn-transition);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    box-shadow: var(--lhpn-shadow-md);
}

.lhpn-cta-btn:hover {
    background: var(--lhpn-gray-50);
    transform: translateY(-3px);
    box-shadow: var(--lhpn-shadow-lg);
}

/* Guarantee Badge Component */
.lhpn-guarantee {
    background: linear-gradient(135deg, var(--lhpn-white) 0%, var(--lhpn-gray-50) 100%);
    border: 2px solid var(--lhpn-success);
    border-radius: var(--lhpn-radius-lg);
    padding: 31px 32px;
    display: flex;
    align-items: center;
    gap: 19px;
    margin: 52px 0;
    box-shadow: var(--lhpn-shadow-md), 0 0 0 4px rgba(10,156,100,0.06);
    position: relative;
    overflow: hidden;
}

.lhpn-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--lhpn-success), var(--lhpn-success-light));
}

.lhpn-guarantee-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--lhpn-success) 0%, var(--lhpn-success-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(10,146,105,0.25);
}

.lhpn-guarantee-icon svg {
    width: 30px;
    height: 30px;
    color: var(--lhpn-white);
}

.lhpn-guarantee-content h4 {
    font-family: var(--lhpn-font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--lhpn-gray-900);
    margin-bottom: 7px;
}

.lhpn-guarantee-content p {
    font-size: 15px;
    color: var(--lhpn-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Main Content Layout with Sticky Sidebar */
.lhpn-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 53px;
    padding: 65px 0;
    max-width:100%;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 30px;
}

.lhpn-content {
    min-width: 0;
}

.lhpn-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.lhpn-sidebar-box {
    background: var(--lhpn-white);
    border: 1px solid var(--lhpn-gray-200);
    border-radius: var(--lhpn-radius-lg);
    padding: 29px;
    margin-bottom: 22px;
    box-shadow: var(--lhpn-shadow-md);
    transition: var(--lhpn-transition);
}

.lhpn-sidebar-box:hover {
    box-shadow: var(--lhpn-shadow-lg);
    border-color: var(--lhpn-gray-300);
}

.lhpn-sidebar-title {
    font-family: var(--lhpn-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--lhpn-navy);
    margin-bottom: 18px;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--lhpn-bronze);
    display: flex;
    align-items: center;
    gap: 9px;
}

.lhpn-sidebar-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    border-radius: 1px;
}

.lhpn-sidebar-list {
    list-style: none;
}

.lhpn-sidebar-list li {
    margin-bottom: 7px;
}

.lhpn-sidebar-list a {
    color: var(--lhpn-gray-600);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: var(--lhpn-radius-sm);
    transition: var(--lhpn-transition);
    border-left: 3px solid transparent;
}

.lhpn-sidebar-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lhpn-gray-300);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--lhpn-transition);
}

.lhpn-sidebar-list a:hover {
    background: var(--lhpn-gray-50);
    color: var(--lhpn-navy);
    border-left-color: var(--lhpn-bronze);
    padding-left: 21px;
}

.lhpn-sidebar-list a:hover::before {
    background: var(--lhpn-bronze);
    transform: scale(1.3);
}

/* Sidebar CTA */
.lhpn-sidebar-cta {
    background: linear-gradient(135deg, var(--lhpn-navy-dark) 0%, var(--lhpn-navy) 100%);
    border-radius: var(--lhpn-radius-lg);
    padding: 28px;
    text-align: center;
    color: var(--lhpn-white);
    position: relative;
    overflow: hidden;
}

.lhpn-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(173,127,74,0.15) 0%, transparent 60%);
}

.lhpn-sidebar-cta h4 {
    font-family: var(--lhpn-font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.lhpn-sidebar-cta p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 21px;
    position: relative;
}

.lhpn-sidebar-cta .lhpn-btn {
    width: 100%;
    position: relative;
}

/* Article Styles */
.lhpn-article {
    background: var(--lhpn-white);
    border-radius: var(--lhpn-radius-xl);
    padding: 56px;
    box-shadow: var(--lhpn-shadow-lg);
    border: 1px solid var(--lhpn-gray-200);
    position: relative;
}

.lhpn-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lhpn-navy), var(--lhpn-bronze), var(--lhpn-navy));
    border-radius: var(--lhpn-radius-xl) var(--lhpn-radius-xl) 0 0;
}

.lhpn-article-intro {
    font-size: 19px;
    line-height: 1.85;
    color: var(--lhpn-gray-700);
    padding: 27px 34px;
    background: linear-gradient(135deg, var(--lhpn-gray-50) 0%, var(--lhpn-white) 100%);
    border-left: 5px solid var(--lhpn-bronze);
    border-radius: var(--lhpn-radius-md);
    margin-bottom: 48px;
    box-shadow: var(--lhpn-shadow-sm);
    position: relative;
}

.lhpn-article-intro::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--lhpn-font-serif);
    font-size: 60px;
    color: var(--lhpn-bronze);
    opacity: 0.15;
    line-height: 1;
}

.lhpn-article h2 {
    font-family: var(--lhpn-font-serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--lhpn-navy);
    margin: 52px 0 28px 0;
    line-height: 1.25;
    position: relative;
    padding-left: 21px;
    scroll-margin-top: 100px;
}

.lhpn-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: linear-gradient(180deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    border-radius: 3px;
}

.lhpn-article h2:first-of-type {
    margin-top: 0;
}

.lhpn-article h3 {
    font-family: var(--lhpn-font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--lhpn-navy-light);
    margin: 44px 0 19px 0;
    scroll-margin-top: 100px;
    position: relative;
    padding-left: 19px;
}

.lhpn-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--lhpn-bronze);
    border-radius: 50%;
}

.lhpn-article p {
    margin-bottom: 22px;
    color: var(--lhpn-gray-700);
    line-height: 1.85;
}

.lhpn-article strong {
    color: var(--lhpn-gray-800);
    font-weight: 600;
}

.lhpn-article a {
    color: var(--lhpn-bronze);
    text-decoration: underline;
    text-decoration-color: rgba(172,117,83,0.3);
    text-underline-offset: 3px;
    transition: var(--lhpn-transition);
}

.lhpn-article a:hover {
    color: var(--lhpn-bronze-dark);
    text-decoration-color: var(--lhpn-bronze);
}

.lhpn-article ul, .lhpn-article ol {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.lhpn-article li {
    margin-bottom: 13px;
    position: relative;
    padding-left: 35px;
    line-height: 1.75;
}

.lhpn-article ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    border-radius: 50%;
}

.lhpn-article ol {
    counter-reset: item;
}

.lhpn-article ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--lhpn-navy), var(--lhpn-navy-light));
    color: var(--lhpn-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* Image Styling */
.lhpn-img-container {
    margin: 48px 0;
    border-radius: var(--lhpn-radius-lg);
    overflow: hidden;
    box-shadow: var(--lhpn-shadow-xl);
    border: 1px solid var(--lhpn-gray-200);
    position: relative;
    background: var(--lhpn-gray-100);
}

.lhpn-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lhpn-bronze), var(--lhpn-bronze-light), var(--lhpn-bronze));
    z-index: 1;
}

.lhpn-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.lhpn-img-container img.loaded {
    opacity: 1;
}

.lhpn-img-container:hover img {
    transform: scale(1.02);
}

.lhpn-img-caption {
    padding: 17px 20px;
    background: var(--lhpn-gray-50);
    font-size: 14px;
    color: var(--lhpn-gray-600);
    text-align: center;
    border-top: 1px solid var(--lhpn-gray-200);
}

/* Key Points Box */
.lhpn-key-points {
    background: linear-gradient(135deg, var(--lhpn-navy-dark) 0%, var(--lhpn-navy) 100%);
    border-radius: var(--lhpn-radius-lg);
    padding: 34px;
    margin: 48px 0;
    color: var(--lhpn-white);
    position: relative;
    overflow: hidden;
}

.lhpn-key-points::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(171,123,75,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.lhpn-key-points h4 {
    font-family: var(--lhpn-font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--lhpn-bronze-light);
    position: relative;
}

.lhpn-key-points ul {
    margin: 0;
    padding: 0;
}

.lhpn-key-points li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 25px;
    margin-bottom: 14px;
}

.lhpn-key-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lhpn-bronze-light);
    font-weight: 700;
    background: none;
    width: auto;
    height: auto;
}

/* FAQ Accordion */
.lhpn-faq {
    margin-top: 64px;
    padding-top: 58px;
    border-top: 3px solid var(--lhpn-gray-200);
    position: relative;
}

.lhpn-faq::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    border-radius: 1px;
}

.lhpn-faq-header {
    text-align: center;
    margin-bottom: 47px;
}

.lhpn-faq-title {
    font-family: var(--lhpn-font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--lhpn-navy);
    margin-bottom: 15px;
}

.lhpn-faq-subtitle {
    font-size: 18px;
    color: var(--lhpn-gray-500);
}

.lhpn-faq-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lhpn-faq-item {
    background: var(--lhpn-white);
    border: 1px solid var(--lhpn-gray-200);
    border-radius: var(--lhpn-radius-md);
    overflow: hidden;
    transition: var(--lhpn-transition);
    box-shadow: var(--lhpn-shadow-sm);
}

.lhpn-faq-item:hover {
    border-color: var(--lhpn-bronze);
    box-shadow: var(--lhpn-shadow-md);
}

.lhpn-faq-item.active {
    border-color: var(--lhpn-navy);
    box-shadow: var(--lhpn-shadow-lg), 0 0 0 3px rgba(25,54,93,0.05);
}

.lhpn-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    padding: 26px 27px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--lhpn-transition);
}

.lhpn-faq-question:hover {
    background: var(--lhpn-gray-50);
}

.lhpn-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--lhpn-gray-800);
    line-height: 1.4;
}

.lhpn-faq-icon {
    width: 36px;
    height: 36px;
    background: var(--lhpn-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--lhpn-transition);
    box-shadow: var(--lhpn-shadow-sm);
}

.lhpn-faq-icon svg {
    width: 16px;
    height: 16px;
    color: var(--lhpn-white);
    transition: transform var(--lhpn-transition);
}

.lhpn-faq-item.active .lhpn-faq-icon {
    background: linear-gradient(135deg, var(--lhpn-bronze), var(--lhpn-bronze-light));
    transform: rotate(180deg);
}

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

.lhpn-faq-item.active .lhpn-faq-answer {
    max-height: 800px;
}

.lhpn-faq-answer-inner {
    padding: 0 30px 27px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--lhpn-gray-600);
    border-top: 1px solid var(--lhpn-gray-100);
    padding-top: 18px;
    margin-top: -5px;
}

/* Author Box */
.lhpn-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--lhpn-gray-50);
    border-radius: var(--lhpn-radius-lg);
    margin: 47px 0;
    border: 1px solid var(--lhpn-gray-200);
}

.lhpn-author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lhpn-navy), var(--lhpn-navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lhpn-bronze-light);
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.lhpn-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--lhpn-gray-900);
    margin-bottom: 4px;
}

.lhpn-author-info p {
    font-size: 11px;
    color: var(--lhpn-gray-500);
    margin: 0;
}

/* Breadcrumb */
.lhpn-breadcrumb {
    padding: 18px 0;
    background: var(--lhpn-gray-50);
    border-bottom: 1px solid var(--lhpn-gray-200);
}

.lhpn-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 11px;
    list-style: none;
    font-size: 15px;
}

.lhpn-breadcrumb-list a {
    color: var(--lhpn-gray-500);
    text-decoration: none;
    transition: var(--lhpn-transition);
}

.lhpn-breadcrumb-list a:hover {
    color: var(--lhpn-navy);
}

.lhpn-breadcrumb-list span {
    color: var(--lhpn-gray-400);
}

.lhpn-breadcrumb-list li:last-child {
    color: var(--lhpn-gray-700);
    font-weight: 500;
}

/* Footer */
.lhpn-footer {
    background: linear-gradient(180deg, var(--lhpn-navy-dark) 0%, var(--lhpn-navy-deeper) 100%);
    color: var(--lhpn-white);
    padding: 78px 0 43px;
    margin-top: 90px;
    position: relative;
}

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

.lhpn-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 57px;
    margin-bottom: 49px;
    padding-bottom: 48px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.lhpn-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 23px;
}

.lhpn-footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 320px;
}

.lhpn-footer-heading {
    font-family: var(--lhpn-font-serif);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--lhpn-bronze-light);
    position: relative;
    padding-bottom: 15px;
}

.lhpn-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--lhpn-bronze);
    border-radius: 2px;
}

.lhpn-footer-links {
    list-style: none;
}

.lhpn-footer-links li {
    margin-bottom: 12px;
}

.lhpn-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--lhpn-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lhpn-footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--lhpn-transition);
}

.lhpn-footer-links a:hover {
    color: var(--lhpn-bronze-light);
    transform: translateX(5px);
}

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

.lhpn-footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.lhpn-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.lhpn-footer-bottom a:hover {
    color: var(--lhpn-bronze-light);
}

/* Contact Form */
.lhpn-form-group {
    margin-bottom: 22px;
}

.lhpn-form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--lhpn-gray-700);
    margin-bottom: 8px;
}

.lhpn-form-label .required {
    color: var(--lhpn-error);
}

.lhpn-form-input,
.lhpn-form-textarea {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid var(--lhpn-gray-200);
    border-radius: var(--lhpn-radius-sm);
    font-size: 19px;
    font-family: inherit;
    transition: var(--lhpn-transition);
    background: var(--lhpn-white);
}

.lhpn-form-input:hover,
.lhpn-form-textarea:hover {
    border-color: var(--lhpn-gray-300);
}

.lhpn-form-input:focus,
.lhpn-form-textarea:focus {
    outline: none;
    border-color: var(--lhpn-navy);
    box-shadow: 0 0 0 4px rgba(27,60,97,0.1);
}

.lhpn-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.lhpn-form-submit {
    width: 100%;
    padding: 19px 32px;
    background: linear-gradient(135deg, var(--lhpn-navy) 0%, var(--lhpn-navy-light) 100%);
    color: var(--lhpn-white);
    border: none;
    border-radius: var(--lhpn-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--lhpn-transition);
    box-shadow: var(--lhpn-shadow-navy);
}

.lhpn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26,50,89,0.3);
}

/* Page Header */
.lhpn-page-header {
    background: linear-gradient(135deg, var(--lhpn-navy-dark) 0%, var(--lhpn-navy) 100%);
    padding: 66px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lhpn-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(169,122,85,0.05)" stroke-width="0.4" x="0" y="0" width="20" height="20"/></svg>');
    background-size: 40px 40px;
}

.lhpn-page-title {
    font-family: var(--lhpn-font-serif);
    font-size: 42px;
    font-weight: 700;
    color: var(--lhpn-white);
    margin-bottom: 9px;
    position: relative;
}

.lhpn-page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Simple Page Content */
.lhpn-page-content {
    background: var(--lhpn-white);
    border-radius: var(--lhpn-radius-xl);
    padding: 54px;
    margin: 58px auto;
    max-width: 900px;
    box-shadow: var(--lhpn-shadow-lg);
    border: 1px solid var(--lhpn-gray-200);
}

.lhpn-page-content h2 {
    font-family: var(--lhpn-font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--lhpn-navy);
    margin: 45px 0 17px 0;
    position: relative;
    padding-left: 20px;
}

.lhpn-page-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--lhpn-bronze);
    border-radius: 1px;
}

.lhpn-page-content h2:first-child {
    margin-top: 0;
}

.lhpn-page-content p {
    margin-bottom: 23px;
    color: var(--lhpn-gray-700);
    line-height: 1.8;
}

.lhpn-page-content ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.lhpn-page-content li {
    margin-bottom: 9px;
    padding-left: 30px;
    position: relative;
}

.lhpn-page-content li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--lhpn-bronze);
    border-radius: 50%;
}

.lhpn-page-content a {
    color: var(--lhpn-bronze);
    text-decoration: underline;
    text-decoration-color: rgba(167,119,82,0.3);
}

.lhpn-page-content a:hover {
    color: var(--lhpn-bronze-dark);
    text-decoration-color: var(--lhpn-bronze);
}

/* Last Updated Badge */
.lhpn-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--lhpn-gray-100);
    padding: 8px 13px;
    border-radius: 22px;
    font-size: 12px;
    color: var(--lhpn-gray-600);
    margin-bottom: 33px;
}

.lhpn-last-updated svg {
    width: 17px;
    height: 16px;
}

/* Reading Time */
.lhpn-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--lhpn-gray-500);
    margin-bottom: 17px;
}

/* Table of Contents */
.lhpn-toc {
    background: var(--lhpn-gray-50);
    border: 1px solid var(--lhpn-gray-200);
    border-radius: var(--lhpn-radius-lg);
    padding: 27px;
    margin: 38px 0;
}

.lhpn-toc-title {
    font-family: var(--lhpn-font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--lhpn-navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.lhpn-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lhpn-toc-list li {
    margin-bottom: 10px;
    padding-left: 0;
}

.lhpn-toc-list li::before {
    display: none;
}

.lhpn-toc-list a {
    color: var(--lhpn-gray-600);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--lhpn-transition);
}

.lhpn-toc-list a:hover {
    color: var(--lhpn-bronze);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .lhpn-layout {
        grid-template-columns: 1fr;
    }

    .lhpn-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 21px;
    }

    .lhpn-sidebar-cta {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .lhpn-menu {
        display: none;
    }

    .lhpn-burger {
        display: flex;
    }

    .lhpn-hero {
        padding: 73px 0 60px;
    }

    .lhpn-hero-heading {
        font-size: 34px;
    }

    .lhpn-hero-desc {
        font-size: 17px;
    }

    .lhpn-hero-btns {
        flex-direction: column;
    }

    .lhpn-btn {
        width: 100%;
    }

    .lhpn-article {
        padding: 29px 27px;
        border-radius: var(--lhpn-radius-lg);
    }

    .lhpn-article h2 {
        font-size: 26px;
        margin: 38px 0 23px 0;
    }

    .lhpn-article h3 {
        font-size: 20px;
    }

    .lhpn-article-intro {
        padding: 19px 26px;
        font-size: 16px;
    }

    .lhpn-sidebar {
        grid-template-columns: 1fr;
    }

    .lhpn-sidebar-cta {
        grid-column: span 1;
    }

    .lhpn-footer-grid {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .lhpn-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 29px 22px;
    }

    .lhpn-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .lhpn-page-content {
        padding: 33px 24px;
        margin: 27px 18px;
        border-radius: var(--lhpn-radius-lg);
    }

    .lhpn-page-title {
        font-size: 32px;
    }

    .lhpn-faq-title {
        font-size: 28px;
    }

    .lhpn-faq-question {
        padding: 21px;
    }

    .lhpn-faq-answer-inner {
        padding: 0 18px 23px;
    }

    .lhpn-trust-items {
        gap: 20px;
    }

    .lhpn-trust-item {
        font-size: 9px;
    }

    .lhpn-author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lhpn-hero-heading {
        font-size: 28px;
    }

    .lhpn-article h2 {
        font-size: 23px;
    }

    .lhpn-faq-question-text {
        font-size: 15px;
    }
}

/* Print Styles */
@media print {
    .lhpn-navbar,
    .lhpn-sidebar,
    .lhpn-cta-banner,
    .lhpn-footer,
    .lhpn-btn,
    .lhpn-burger {
        display: none !important;
    }

    .lhpn-article {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    body {
        background: white;
        color: black;
    }
}

/* ==================
   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: 5px;
    margin-bottom: 10px;
    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: 11px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 11px 22px;
    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: 7px 26px;
    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: 8px 13px;
        font-size: 15px;
    }
}
/* ==================
   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: 8px !important;
        margin: 0 auto 9px !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: 14px 19px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 9px !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 1400px for desktop */
.lhpn-wrapper, .lhpn-content, .lhpn-hero-inner, .lhpn-companies-container, 
.lhpn-article, .lhpn-container, .lhpn-footer-inner, .lhpn-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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