/* Ritz-Carlton Platinum Style - Auto-themed */
:root {
    --bphm-primary: #0a170e;
    --bphm-accent: #67ba6b;
    --bphm-gold: #5cb66f;
    --bphm-gold-light: #a0b1b0;
    --bphm-gold-dark: #7c8986;
    --bphm-bg: #0b0f10;
    --bphm-bg-dark: #342b35;
    --bphm-bg-gradient: linear-gradient(135deg, #ffffff 0%, #faf9f6 50%, #ffffff 100%);
    --bphm-text: #E8EDF2;
    --bphm-text-light: #666963;
    --bphm-border: #b4b9c2;
    --bphm-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --bphm-shadow-hover: rgba(0, 0, 0, 0.12);
    --bphm-shadow-gold: rgba(148,160,176,0.2);
    --bphm-success: #26875f;
    --bphm-danger: #cc5236;
    --bphm-overlay: rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--bphm-text);
    background: var(--bphm-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(146,165,175,0.015) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(202,164,89,0.015) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #faf9f6 100%);
    background-attachment: fixed;
    font-size: 18px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(144,166,174,0.006) 4px, rgba(143,160,173,0.006) 8px);
    pointer-events: none;
    z-index: 0;
}

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

.bphm-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 34px;
    position: relative;
}

.bphm-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(142,170,181,0.08) 20%, 
        rgba(141,165,172,0.12) 50%, 
        rgba(140,159,180,0.08) 80%, 
        transparent);
    opacity: 0.4;
}

.bphm-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(139,169,171,0.08) 20%, 
        rgba(138,160,179,0.12) 50%, 
        rgba(137,170,170,0.08) 80%, 
        transparent);
    opacity: 0.4;
}

/* Navigation */
.bphm-navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 2px solid var(--bphm-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 
        0 5px 30px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(149,163,176,0.1),
        0 0 0 1px rgba(148,157,168,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(146,158,166,0.03);
    position: relative;
    transition: all 0.3s ease;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(145,168,174,0.01) 50%, transparent 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.bphm-navbar.scrolled {
    box-shadow: 
        0 6px 40px rgba(0, 0, 0, 0.1),
        0 2px 5px rgba(141,158,180,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.bphm-nav-container {
    max-width:100%;
    margin: 0 auto;
    padding: 25px 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bphm-logo-wrapper {
    display: flex;
    align-items: center;
}

.bphm-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bphm-primary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

.bphm-logo-link:hover {
    transform: translateY(-2px);
}

.bphm-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bphm-gold) 0%, var(--bphm-gold-light) 50%, var(--bphm-gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bphm-primary);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 6px 20px var(--bphm-shadow-gold);
    position: relative;
    overflow: hidden;
}

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

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

.bphm-logo-text {
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.bphm-nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.bphm-nav-link {
    color: var(--bphm-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 12px 19px;
    border-radius: 11px;
}

.bphm-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(138,156,170,0.1), rgba(194,172,101,0.06));
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

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

.bphm-nav-link:hover {
    color: var(--bphm-gold-dark);
    transform: translateY(-2px);
}

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

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

.bphm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bphm-menu-icon {
    width: 28px;
    height: 3px;
    background: var(--bphm-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

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

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

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

/* Breadcrumb */
.bphm-breadcrumb {
    margin-bottom: 37px;
    padding: 19px 0;
    border-bottom: 2px solid var(--bphm-border);
}

.bphm-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 13px;
    list-style: none;
    font-size: 13px;
    color: var(--bphm-text-light);
}

.bphm-breadcrumb-list li {
    display: flex;
    align-items: center;
}

.bphm-breadcrumb-list a {
    color: var(--bphm-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bphm-breadcrumb-list a:hover {
    color: var(--bphm-gold-dark);
}

.bphm-breadcrumb-separator {
    color: var(--bphm-gold);
    font-weight: 600;
}

/* Main Content */
.bphm-main {
    padding: 63px 0;
    min-height: calc(100vh - 200px);
}

.bphm-article {
    background: #ffffff;
    border-radius: 13px;
    padding: 62px 49px;
    box-shadow: 
        0 11px 41px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(151,171,169,0.08),
        0 0 0 1px rgba(150,162,176,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(148,166,175,0.03);
    border: 1px solid var(--bphm-border);
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(147,161,167,0.01) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(203,176,97,0.01) 0%, transparent 50%);
}

.bphm-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bphm-gold) 20%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 80%, 
        transparent);
    border-radius: 17px 14px 0 0;
    animation: bphm-shimmer 3s infinite;
}

.bphm-article::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(145,165,166,0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: bphm-rotate-slow 20s linear infinite;
}

@keyframes bphm-shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.bphm-article-header {
    margin-bottom: 48px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--bphm-border);
}

.bphm-article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--bphm-primary);
    line-height: 1.3;
    margin-bottom: 19px;
    letter-spacing: -0.6px;
}

.bphm-article-meta {
    font-size: 15px;
    color: var(--bphm-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bphm-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 20px;
}

.bphm-tag {
    display: inline-block;
    padding: 5px 16px;
    background: linear-gradient(135deg, rgba(144,156,181,0.1), rgba(200,171,96,0.08));
    border: 1px solid rgba(142,160,180,0.2);
    border-radius: 23px;
    font-size: 14px;
    font-weight: 500;
    color: var(--bphm-gold-dark);
    transition: all 0.3s ease;
}

.bphm-tag:hover {
    background: linear-gradient(135deg, rgba(141,170,171,0.15), rgba(197,170,102,0.12));
    border-color: var(--bphm-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,159,170,0.2);
}

.bphm-meta-separator {
    color: var(--bphm-gold);
    font-weight: 700;
}

/* Trust Badges Component */
.bphm-trust-badges {
    margin: 37px 0;
    padding: 37px;
    background: linear-gradient(135deg, 
        rgba(138,169,178,0.05) 0%, 
        rgba(194,165,100,0.03) 50%,
        rgba(136,170,169,0.05) 100%);
    border-radius: 11px;
    border: 2px solid rgba(151,164,176,0.15);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(148,163,167,0.1);
    position: relative;
    overflow: hidden;
}

.bphm-trust-badges::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(147,170,174,0.08) 0%, transparent 70%);
    animation: bphm-pulse-slow 8s ease-in-out infinite;
}

@keyframes bphm-pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bphm-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.bphm-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 19px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    border-radius: 13px;
    border: 2px solid var(--bphm-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bphm-trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bphm-gold), var(--bphm-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bphm-trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(145,158,181,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--bphm-gold);
}

.bphm-trust-item:hover::before {
    transform: scaleX(1);
}

.bphm-trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bphm-gold), var(--bphm-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px var(--bphm-shadow-gold),
        0 2px 8px rgba(143,163,180,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.bphm-trust-item:hover .bphm-trust-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 20px var(--bphm-shadow-gold),
        0 3px 10px rgba(141,167,179,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bphm-trust-content {
    flex: 1;
}

.bphm-trust-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin-bottom: 7px;
}

.bphm-trust-desc {
    font-size: 17px;
    color: var(--bphm-text-light);
    line-height: 1.6;
}

/* Content Styles */
.bphm-content {
    font-size: 18px;
    line-height: 1.9;
    color: var(--bphm-text);
}

.bphm-lead {
    font-size: 22px;
    line-height: 1.7;
    color: var(--bphm-text);
    margin-bottom: 38px;
    padding: 30px 32px;
    background: linear-gradient(135deg, 
        rgba(139,168,178,0.04) 0%, 
        rgba(195,167,100,0.02) 50%,
        rgba(137,157,169,0.04) 100%);
    border-left: 5px solid var(--bphm-gold);
    border-radius: 11px;
    box-shadow: 
        0 5px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(151,161,168,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(149,162,167,0.05);
    position: relative;
    overflow: hidden;
}

.bphm-lead::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(148,156,174,0.08) 0%, transparent 70%);
    animation: bphm-rotate-slow 15s linear infinite;
    pointer-events: none;
}

.bphm-lead::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, rgba(147,166,166,0.12) 0%, transparent 70%);
    border-radius: 0 15px 0 100%;
    pointer-events: none;
    z-index: 0;
}

.bphm-lead > * {
    position: relative;
    z-index: 1;
}

.bphm-heading-secondary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin: 48px 0 28px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 27px;
    padding-top: 12px;
    padding-bottom: 9px;
}

.bphm-heading-secondary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, 
        var(--bphm-gold) 0%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 100%);
    border-radius: 4px;
    box-shadow: 
        0 0 8px rgba(146,161,181,0.3),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
}

.bphm-heading-secondary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--bphm-gold), transparent);
    border-radius: 1px;
}

.bphm-heading-tertiary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--bphm-primary);
    margin: 36px 0 18px;
    line-height: 1.4;
    position: relative;
    padding-left: 28px;
}

.bphm-heading-tertiary::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bphm-gold);
    font-size: 20px;
    line-height: 1.4;
    opacity: 0.6;
    animation: bphm-pulse-gentle 3s ease-in-out infinite;
}

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

.bphm-content p {
    margin-bottom: 19px;
    color: var(--bphm-text);
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    position: relative;
}

.bphm-content p::first-line {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.bphm-content ul, .bphm-content ol {
    margin: 24px 0;
    padding-left: 33px;
    position: relative;
}

.bphm-content ul {
    list-style: none;
    padding-left: 0;
}

.bphm-content ul li {
    padding-left: 31px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.8;
}

.bphm-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--bphm-gold);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(144,165,180,0.3);
    transition: transform 0.3s ease;
}

.bphm-content ul li:hover::before {
    transform: translateX(3px);
}

/* Content Summary Box */
.bphm-content-summary {
    margin: 42px 0;
    padding: 29px;
    background: linear-gradient(135deg, 
        rgba(143,156,172,0.06) 0%, 
        rgba(199,171,102,0.04) 50%,
        rgba(141,160,171,0.06) 100%);
    border-radius: 15px;
    border: 3px solid rgba(140,171,178,0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(137,166,177,0.1);
    position: relative;
    overflow: hidden;
}

.bphm-content-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--bphm-gold), var(--bphm-gold-light));
    border-radius: 0 2px 4px 0;
}

.bphm-summary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin-bottom: 18px;
    padding-left: 18px;
    position: relative;
}

.bphm-summary-title::before {
    content: '📋';
    position: absolute;
    left: 0;
    font-size: 20px;
}

.bphm-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bphm-summary-list li {
    padding: 9px 0 14px 34px;
    position: relative;
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--bphm-text);
    border-bottom: 1px solid rgba(136,160,168,0.1);
    transition: all 0.3s ease;
}

.bphm-summary-list li:last-child {
    border-bottom: none;
}

.bphm-summary-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--bphm-gold), var(--bphm-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(151,170,176,0.3);
}

.bphm-summary-list li:hover {
    padding-left: 41px;
    color: var(--bphm-gold-dark);
}

.bphm-summary-list li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(150,164,167,0.4);
}

.bphm-content ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    padding-left: 7px;
    position: relative;
}

.bphm-content ol li::marker {
    font-weight: 700;
    color: var(--bphm-gold-dark);
}

/* Image Styles */
.bphm-image-wrapper {
    margin: 42px 0;
    text-align: center;
    position: relative;
    padding: 19px;
    background: linear-gradient(135deg, 
        rgba(149,159,174,0.02) 0%, 
        rgba(205,174,89,0.01) 50%,
        rgba(147,163,181,0.02) 100%);
    border-radius: 19px;
    border: 3px solid rgba(146,170,173,0.12);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(143,169,179,0.05);
    overflow: hidden;
}

.bphm-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bphm-gold) 30%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 70%, 
        transparent);
    animation: bphm-shimmer 3s infinite;
}

.bphm-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, var(--bphm-gold), var(--bphm-gold-light), var(--bphm-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bphm-image-wrapper:hover::before {
    opacity: 0.3;
}

.bphm-content-image {
    max-width:100%;
    height: auto;
    border-radius: 13px;
    box-shadow: 
        0 8px 38px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(141,157,178,0.15),
        0 0 0 1px rgba(140,164,170,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(138,168,177,0.05);
    border: 2px solid var(--bphm-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #faf9f6, #ffffff);
    position: relative;
    overflow: hidden;
    display: block;
    z-index: 1;
    filter: brightness(1) contrast(1) saturate(1.02);
}

.bphm-content-image:hover {
    filter: brightness(1.02) contrast(1.01) saturate(1.05);
}

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

.bphm-content-image:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.18),
        0 6px 20px rgba(151,167,167,0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--bphm-gold);
}

.bphm-content-image:hover::before {
    left: 100%;
}

.bphm-content-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, #f5f5f5, #eee1f0);
    min-height: 200px;
}

.bphm-content-image[loading="lazy"].loaded {
    opacity: 1;
    background: transparent;
}

/* Loading placeholder for images */
.bphm-image-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(90deg, 
        rgba(245, 245, 245, 0.6) 0%, 
        rgba(236,230,232,0.6) 50%, 
        rgba(245, 245, 245, 0.6) 100%);
    background-size: 200% 100%;
    animation: bphm-skeleton 1.5s infinite;
    border-radius: 9px;
    z-index: 0;
    pointer-events: none;
}

.bphm-image-wrapper .bphm-content-image.loaded ~ *,
.bphm-image-wrapper:has(.bphm-content-image.loaded)::after {
    display: none;
}

@keyframes bphm-skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.bphm-image-caption {
    margin-top: 22px;
    font-size: 13px;
    color: var(--bphm-text-light);
    font-style: italic;
    line-height: 1.7;
    padding: 18px 26px;
    background: linear-gradient(135deg, 
        rgba(146,167,181,0.06), 
        rgba(202,166,95,0.04),
        rgba(144,171,179,0.06));
    border-radius: 8px;
    border-left: 5px solid var(--bphm-gold);
    text-align: left;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
}

.bphm-image-caption::before {
    content: 'ℹ';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--bphm-gold);
    opacity: 0.7;
}

/* Winner Section Component */
.bphm-winner-section {
    margin: 51px 0;
    padding: 43px;
    background: linear-gradient(135deg, 
        rgba(141,166,170,0.08) 0%, 
        rgba(197,166,92,0.05) 50%,
        rgba(139,171,177,0.08) 100%);
    border-radius: 19px;
    border: 2px solid rgba(138,165,168,0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(151,160,175,0.15);
}

.bphm-winner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(150,170,166,0.1) 0%, transparent 70%);
    animation: bphm-pulse 6s ease-in-out infinite;
}

@keyframes bphm-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.bphm-winner-content {
    position: relative;
    z-index: 1;
}

.bphm-winner-badge {
    font-size: 48px;
    text-align: center;
    margin-bottom: 18px;
}

.bphm-winner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--bphm-primary);
    text-align: center;
    margin-bottom: 20px;
}

.bphm-winner-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--bphm-text);
    text-align: center;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bphm-winner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    max-width: 700px;
    margin: 0 auto;
}

.bphm-winner-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    border-radius: 8px;
    border: 1px solid var(--bphm-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bphm-winner-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--bphm-gold), var(--bphm-gold-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.bphm-winner-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--bphm-gold);
}

.bphm-winner-feature:hover::before {
    transform: scaleY(1);
}

.bphm-winner-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--bphm-gold), var(--bphm-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

/* Company Card Component */
.bphm-company-card {
    margin: 47px 0;
    padding: 47px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    border-radius: 15px;
    border: 3px solid var(--bphm-border);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(147,169,181,0.1),
        0 0 0 1px rgba(146,160,172,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(144,164,171,0.03);
    position: relative;
    overflow: hidden;
}

.bphm-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bphm-gold) 20%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 80%, 
        transparent);
    border-radius: 17px 14px 0 0;
    animation: bphm-shimmer 4s infinite;
}

.bphm-company-header {
    text-align: center;
    margin-bottom: 43px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bphm-border);
}

.bphm-company-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin-bottom: 11px;
}

.bphm-company-subtitle {
    font-size: 16px;
    color: var(--bphm-text-light);
}

.bphm-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
}

.bphm-company-item {
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    border-radius: 15px;
    border: 1px solid var(--bphm-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bphm-company-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bphm-gold), var(--bphm-gold-light), var(--bphm-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bphm-company-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(143,159,179,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bphm-company-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(141,163,169,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--bphm-gold);
}

.bphm-company-item:hover::before {
    transform: scaleX(1);
}

.bphm-company-item:hover::after {
    opacity: 1;
}

.bphm-company-rating {
    font-size: 20px;
    color: var(--bphm-gold);
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.bphm-company-name {
    font-size: 21px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin-bottom: 13px;
    font-family: 'Cormorant Garamond', serif;
}

.bphm-company-info {
    font-size: 14px;
    color: var(--bphm-text-light);
    margin-bottom: 18px;
}

.bphm-company-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bphm-company-features li {
    padding: 11px 0;
    font-size: 15px;
    color: var(--bphm-text);
    position: relative;
    padding-left: 22px;
}

.bphm-company-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bphm-gold);
    font-weight: 700;
}

/* FAQ Section */
.bphm-faq-section {
    margin: 62px 0;
    padding: 49px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    border-radius: 19px;
    border: 3px solid var(--bphm-border);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(138,158,176,0.1),
        0 0 0 1px rgba(137,168,167,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(151,157,166,0.03);
    position: relative;
    overflow: hidden;
}

.bphm-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bphm-gold) 20%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 80%, 
        transparent);
    border-radius: 14px 19px 0 0;
    animation: bphm-shimmer 4s infinite;
}

.bphm-faq-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 27px;
    border-bottom: 3px solid var(--bphm-border);
}

.bphm-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--bphm-primary);
    margin-bottom: 18px;
}

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

.bphm-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.bphm-faq-item {
    margin-bottom: 23px;
    border: 1px solid var(--bphm-border);
    border-radius: 7px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.bphm-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--bphm-gold), var(--bphm-gold-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.bphm-faq-item:hover {
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 3px 15px rgba(149,158,173,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--bphm-gold);
    transform: translateX(4px);
}

.bphm-faq-item:hover::before {
    transform: scaleY(1);
}

.bphm-faq-question[aria-expanded="true"] + .bphm-faq-answer {
    background: linear-gradient(135deg, rgba(147,162,172,0.02) 0%, rgba(203,162,103,0.01) 100%);
}

.bphm-faq-question {
    width: 100%;
    padding: 22px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--bphm-primary);
    transition: all 0.3s ease;
}

.bphm-faq-question:hover {
    color: var(--bphm-gold-dark);
}

.bphm-faq-question-text {
    flex: 1;
    padding-right: 23px;
}

.bphm-faq-icon {
    width: 25px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bphm-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bphm-faq-question[aria-expanded="true"] .bphm-faq-icon {
    transform: rotate(180deg);
}

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

.bphm-faq-question[aria-expanded="true"] + .bphm-faq-answer {
    max-height: 500px;
}

.bphm-faq-answer-content {
    padding: 0 30px 22px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--bphm-text);
}

/* Footer */
.bphm-footer {
    background: linear-gradient(135deg, #2a2826 0%, #221c18 100%);
    color: #ffffff;
    padding: 59px 0 33px;
    margin-top: 81px;
    border-top: 2px solid var(--bphm-gold);
    position: relative;
    overflow: hidden;
}

.bphm-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bphm-gold) 20%, 
        var(--bphm-gold-light) 50%, 
        var(--bphm-gold) 80%, 
        transparent);
    animation: bphm-shimmer 3s infinite;
}

.bphm-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(145,167,171,0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: bphm-rotate-slow 25s linear infinite;
}

.bphm-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 37px;
    position: relative;
    z-index: 1;
}

.bphm-footer-col {
    display: flex;
    flex-direction: column;
}

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

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

.bphm-footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--bphm-gold);
    font-family: 'Cormorant Garamond', serif;
}

.bphm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bphm-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.bphm-footer-links a:hover {
    color: var(--bphm-gold);
    padding-left: 4px;
}

.bphm-footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
}

/* Responsive Design */
/* Additional Visual Enhancements */
.bphm-content p:first-of-type::first-letter {
    float: left;
    font-size: 4.5em;
    line-height: 0.9;
    padding-right: 13px;
    padding-top: 6px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--bphm-gold);
    font-weight: 600;
}

.bphm-content p:first-of-type {
    text-indent: 0;
}

/* Enhanced hover effects for links */
.bphm-content a {
    color: var(--bphm-gold-dark);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.bphm-content a:hover {
    color: var(--bphm-gold);
    border-bottom-color: var(--bphm-gold);
}

.bphm-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bphm-gold), var(--bphm-gold-light));
    transition: width 0.3s ease;
}

.bphm-content a:hover::after {
    width: 100%;
}

/* Enhanced list styling */
.bphm-content ul li::marker {
    color: var(--bphm-gold);
    font-weight: 700;
}

.bphm-content ol li::marker {
    color: var(--bphm-gold);
    font-weight: 600;
}

@media (max-width: 968px) {
    .bphm-menu-toggle {
        display: flex;
    }
    
    .bphm-content p:first-of-type::first-letter {
        font-size: 3.5em;
    }

    .bphm-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 33px;
        box-shadow: 0 9px 28px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .bphm-nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .bphm-nav-link {
        width: 100%;
        text-align: center;
        padding: 18px;
    }

    .bphm-article {
        padding: 40px 27px;
    }

    .bphm-article-title {
        font-size: 36px;
    }

    .bphm-trust-grid {
        grid-template-columns: 1fr;
    }

    .bphm-company-grid {
        grid-template-columns: 1fr;
    }

    .bphm-winner-features {
        grid-template-columns: 1fr;
    }

    .bphm-footer-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .bphm-heading-secondary {
        font-size: 28px;
    }

    .bphm-heading-tertiary {
        font-size: 24px;
    }
}

/* Print Styles */
@media print {
    .bphm-navbar,
    .bphm-footer,
    .bphm-menu-toggle,
    .bphm-breadcrumb,
    .bphm-trust-badges,
    .bphm-winner-section,
    .bphm-company-card {
        display: none;
    }
    
    .bphm-article {
        box-shadow: none;
        border: none;
        padding: 0;
        page-break-inside: avoid;
    }
    
    .bphm-content-image {
        max-width:100%;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #c7ced2;
    }
    
    .bphm-content p {
        text-align: left;
        orphans: 3;
        widows: 3;
    }
    
    .bphm-heading-secondary,
    .bphm-heading-tertiary {
        page-break-after: avoid;
    }
}

/* Accessibility Improvements */
.bphm-content a:focus,
.bphm-nav-link:focus,
.bphm-faq-question:focus,
.bphm-form-button:focus {
    outline: 4px solid var(--bphm-gold);
    outline-offset: 2px;
    border-radius: 3px;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bphm-content-image {
        border: 3px solid var(--bphm-primary);
    }
    
    .bphm-heading-secondary::before,
    .bphm-heading-tertiary::before {
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .bphm-container {
        padding: 0 23px;
    }

    .bphm-article {
        padding: 31px 18px;
    }

    .bphm-article-title {
        font-size: 28px;
    }

    .bphm-lead {
        font-size: 18px;
        padding: 17px 27px;
    }

    .bphm-trust-badges,
    .bphm-winner-section,
    .bphm-company-card,
    .bphm-faq-section,
    .bphm-content-summary {
        padding: 29px 23px;
    }

    .bphm-nav-container {
        padding: 19px 18px;
    }
    
    .bphm-heading-secondary {
        font-size: 24px;
        padding-left: 25px;
    }
    
    .bphm-heading-tertiary {
        font-size: 20px;
        padding-left: 22px;
    }
    
    .bphm-image-wrapper {
        padding: 14px;
    }
    
    .bphm-content-summary {
        padding: 28px 21px;
    }
}


/* ==================
   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 */
.bphm-wrapper, .bphm-content, .bphm-hero-inner, .bphm-companies-container, 
.bphm-article, .bphm-container, .bphm-footer-inner, .bphm-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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