/* Toshiba Sleek Style - Auto-themed */
:root {
    --nbep-primary: #2b0f1f;
    --nbep-primary-light: #4f4052;
    --nbep-accent: #e37ff5;
    --nbep-accent-light: #5abcf5;
    --nbep-accent-dark: #2890bf;
    --nbep-gold: #ee78f5;
    --nbep-gold-light: #52c9f5;
    --nbep-gold-dark: #349dcf;
    --nbep-bg: #FFFFFF;
    --nbep-bg-light: #F0F9FF;
    --nbep-text: #1e0d2d;
    --nbep-text-light: #647781;
    --nbep-border: #b1ecf5;
    --nbep-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --nbep-shadow-hover: rgba(15,32,35,0.15);
    --nbep-shadow-glow: rgba(10,97,205,0.25);
    --nbep-success: #299d46;
    --nbep-danger: #d42f4b;
    --nbep-gradient-primary: linear-gradient(135deg, #101821 0%, #142738 50%, #11202c 100%);
    --nbep-gradient-accent: linear-gradient(135deg, #0a5cd4 0%, #2e7fcf 50%, #0a50a1 100%);
    --nbep-gradient-gold: linear-gradient(135deg, #e47af5 0%, #f5d548 50%, #b69c19 100%);
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--nbep-text);
    background: var(--nbep-bg);
    background-image: 
        radial-gradient(circle at 12% 20%, rgba(10,102,198,0.04) 0%, transparent 45%),
        radial-gradient(circle at 88% 80%, rgba(61,195,245,0.03) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(10,98,199,0.015) 0%, transparent 60%),
        linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    background-attachment: fixed;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    font-size: 17px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(10,107,207,0.008) 4px, rgba(10,97,200,0.008) 5px),
        repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(49,190,245,0.005) 4px, rgba(50,195,245,0.005) 5px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(10,98,209,0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(52,191,245,0.015) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: nbep-bg-pulse 15s ease-in-out infinite;
}

@keyframes nbep-bg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

/* Scroll Progress Bar */
.nbep-scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: var(--nbep-gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 
        0 0 25px rgba(10,97,210,0.6),
        0 0 50px rgba(10,103,203,0.3);
    position: relative;
}

.nbep-scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: nbep-scroll-shine 2s infinite;
}

@keyframes nbep-scroll-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Header */
.nbep-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--nbep-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(26px) saturate(200%);
    box-shadow: 
        0 3px 24px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nbep-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--nbep-gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nbep-header.scrolled::before {
    opacity: 0.6;
}

.nbep-header.scrolled {
    box-shadow: 
        0 4px 35px rgba(0, 0, 0, 0.12),
        0 2px 15px rgba(10,109,206,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

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

.nbep-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--nbep-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nbep-logo:hover {
    transform: translateX(2px);
}

.nbep-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--nbep-gradient-accent);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 
        0 6px 20px rgba(10,105,207,0.35),
        0 3px 8px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.nbep-logo-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.nbep-logo:hover .nbep-logo-icon {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 
        0 8px 30px rgba(10,95,210,0.45),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

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

.nbep-logo-text {
    font-weight: 600;
    background: linear-gradient(135deg, var(--nbep-primary), var(--nbep-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nbep-nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nbep-nav-link {
    color: var(--nbep-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nbep-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nbep-gradient-accent);
    transition: width 0.3s ease;
}

.nbep-nav-link:hover,
.nbep-nav-link--active {
    color: var(--nbep-accent);
}

.nbep-nav-link:hover::after,
.nbep-nav-link--active::after {
    width: 100%;
}

.nbep-menu-btn {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 9px;
}

.nbep-menu-line {
    width: 28px;
    height: 2px;
    background: var(--nbep-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nbep-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 23px;
    background: white;
    border-top: 2px solid var(--nbep-border);
}

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

.nbep-mobile-link {
    padding: 11px 0;
    color: var(--nbep-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--nbep-border);
    transition: all 0.3s ease;
}

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

.nbep-mobile-link:hover {
    color: var(--nbep-accent);
    padding-left: 13px;
}

/* Hero Section */
.nbep-hero {
    background: var(--nbep-gradient-primary);
    color: white;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nbep-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(10,102,196,0.15) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(57,182,245,0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(10,101,197,0.08) 0%, transparent 60%);
    animation: nbep-pulse 12s ease-in-out infinite;
}

.nbep-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(10,107,206,0.03) 120px,
            rgba(10,96,198,0.03) 121px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 150px,
            rgba(61,189,245,0.02) 150px,
            rgba(62,195,243,0.02) 151px
        );
    animation: nbep-drift 30s linear infinite;
}

@keyframes nbep-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

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

.nbep-hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 23px;
    position: relative;
    z-index: 2;
}

.nbep-hero-label {
    display: inline-block;
    padding: 14px 27px;
    background: rgba(10,101,208,0.25);
    border: 2px solid rgba(10,107,200,0.5);
    border-radius: 38px;
    font-size: 11px;
    font-weight: 700;
    color: var(--nbep-accent-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 39px;
    box-shadow: 
        0 5px 27px rgba(10,97,209,0.25),
        0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: nbep-fadeInUp 0.8s ease-out;
}

.nbep-hero-label::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: nbep-shine 3s infinite;
}

.nbep-hero-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.nbep-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 31px 0;
    color: white;
    text-shadow: 
        0 3px 20px rgba(0, 0, 0, 0.35),
        0 6px 30px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(10,98,197,0.15);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 50%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nbep-fadeInUp 1s ease-out 0.2s both;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

.nbep-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 5px;
    background: var(--nbep-gradient-accent);
    border-radius: 3px;
    opacity: 0.7;
    box-shadow: 0 3px 13px rgba(10,109,199,0.4);
}

.nbep-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 43px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: nbep-fadeInUp 1.2s ease-out 0.4s both;
}

.nbep-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: nbep-fadeInUp 1.4s ease-out 0.6s both;
}

@keyframes nbep-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nbep-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 37px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.nbep-btn--primary {
    background: var(--nbep-gradient-accent);
    color: white;
    box-shadow: 
        0 6px 25px rgba(10,105,200,0.35),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.nbep-btn--primary::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.6s ease;
}

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

.nbep-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 35px rgba(10,99,202,0.45),
        0 5px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nbep-btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.nbep-btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

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

.nbep-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Phone CTA Component */
.nbep-phone-cta {
    padding: 48px 0;
    background: linear-gradient(135deg, rgba(10,101,207,0.05), rgba(60,194,243,0.03));
    border-top: 1px solid var(--nbep-border);
    border-bottom: 1px solid var(--nbep-border);
}

.nbep-phone-box {
    display: flex;
    align-items: center;
    gap: 31px;
    background: white;
    padding: 42px 47px;
    border-radius: 20px;
    box-shadow: 
        0 13px 43px rgba(0, 0, 0, 0.12),
        0 4px 20px rgba(10,102,200,0.12),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 3px solid rgba(10,97,202,0.12);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.nbep-phone-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10,102,211,0.05), transparent);
    transition: left 0.8s ease;
}

.nbep-phone-box:hover::before {
    left: 100%;
}

.nbep-phone-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 16px 60px rgba(0, 0, 0, 0.15),
        0 8px 30px rgba(10,98,196,0.2),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    border-color: rgba(10,109,198,0.25);
}

.nbep-phone-icon {
    width: 76px;
    height: 76px;
    background: var(--nbep-gradient-accent);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(10,98,207,0.35),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nbep-phone-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: nbep-shine 3s infinite;
}

.nbep-phone-box:hover .nbep-phone-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 
        0 10px 35px rgba(10,99,201,0.45),
        0 5px 15px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.nbep-phone-content {
    flex: 1;
}

.nbep-phone-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--nbep-primary);
    margin-bottom: 13px;
    background: linear-gradient(135deg, var(--nbep-primary) 0%, var(--nbep-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nbep-phone-text {
    font-size: 16px;
    color: var(--nbep-text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.nbep-phone-number {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--nbep-accent);
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nbep-phone-number:hover {
    color: var(--nbep-accent-dark);
    transform: scale(1.05);
}

.nbep-phone-hours {
    display: block;
    font-size: 14px;
    color: var(--nbep-text-light);
    font-style: italic;
}

/* Social Share Component */
.nbep-social-share {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 26px 36px;
    background: linear-gradient(135deg, rgba(10,109,203,0.06), rgba(52,186,240,0.03));
    border-radius: 19px;
    margin: 44px 0;
    border: 3px solid rgba(10,105,204,0.12);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.nbep-social-share:hover {
    border-color: rgba(10,106,198,0.2);
    box-shadow: 
        0 6px 30px rgba(0, 0, 0, 0.08),
        0 2px 12px rgba(10,105,199,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.nbep-social-label {
    font-weight: 600;
    color: var(--nbep-text);
    font-size: 15px;
}

.nbep-social-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nbep-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nbep-social-btn::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;
}

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

.nbep-social-btn--facebook {
    background: linear-gradient(135deg, #197ff3, #0d67eb);
}

.nbep-social-btn--twitter {
    background: linear-gradient(135deg, #1f9de9, #1392d6);
}

.nbep-social-btn--linkedin {
    background: linear-gradient(135deg, #0a7cb7, #0a6ca0);
}

.nbep-social-btn--email {
    background: var(--nbep-gradient-accent);
}

.nbep-social-btn:hover {
    transform: translateY(-4px) scale(1.12) rotate(2deg);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Main Content */
.nbep-main {
    padding: 70px 0;
    background: white;
}

.nbep-article {
    max-width: 820px;
    margin: 0 auto;
}

.nbep-intro {
    margin-bottom: 53px;
    padding: 41px 48px;
    background: linear-gradient(135deg, rgba(10,96,196,0.08), rgba(52,189,245,0.04));
    border-radius: 19px;
    border-left: 7px solid var(--nbep-accent);
    box-shadow: 
        0 6px 35px rgba(0, 0, 0, 0.08),
        0 2px 12px rgba(10,98,205,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.nbep-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(10,103,199,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nbep-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--nbep-gradient-accent);
    opacity: 0.6;
    border-radius: 3px;
}

.nbep-lead {
    font-size: 19px;
    line-height: 1.85;
    color: var(--nbep-text);
    margin-bottom: 21px;
    font-weight: 400;
}

.nbep-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--nbep-primary);
    margin: 69px 0 34px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 21px;
    padding-left: 24px;
    background: linear-gradient(135deg, var(--nbep-primary) 0%, var(--nbep-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nbep-article h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--nbep-gradient-accent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 15px rgba(10,108,207,0.4);
}

.nbep-article h2:hover::before {
    opacity: 1;
}

.nbep-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 100px;
    height: 5px;
    background: var(--nbep-gradient-accent);
    border-radius: 2px;
    box-shadow: 
        0 3px 18px rgba(10,98,200,0.35),
        0 1px 5px rgba(10,104,208,0.2);
}

.nbep-article h2:hover {
    padding-left: 33px;
    transform: translateX(4px);
}

.nbep-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--nbep-primary);
    margin: 47px 0 22px 0;
    position: relative;
    padding-left: 23px;
    transition: all 0.3s ease;
}

.nbep-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--nbep-gradient-accent);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(10,97,201,0.3);
}

.nbep-article h3:hover::before {
    opacity: 1;
}

.nbep-article h3:hover {
    padding-left: 28px;
    transform: translateX(4px);
}

.nbep-article p {
    margin-bottom: 24px;
    line-height: 1.85;
    color: var(--nbep-text);
    font-size: 17px;
}

.nbep-image-wrapper {
    margin: 53px 0;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 
        0 15px 55px rgba(0, 0, 0, 0.14),
        0 6px 25px rgba(0, 0, 0, 0.1),
        0 2px 10px rgba(10,98,210,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    border: 4px solid rgba(10,100,204,0.12);
    background: linear-gradient(135deg, rgba(10,109,197,0.06), rgba(53,186,245,0.03));
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nbep-image-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--nbep-gradient-accent);
    border-radius: 23px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.nbep-image-wrapper:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 
        0 22px 70px rgba(0, 0, 0, 0.18),
        0 10px 40px rgba(10,94,206,0.25),
        0 4px 15px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    border-color: rgba(10,105,208,0.35);
}

.nbep-image-wrapper:hover::before {
    opacity: 0.4;
}

.nbep-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #ede4e6 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: nbep-loading 1.8s infinite;
    z-index: 1;
    border-radius: 17px;
}

@keyframes nbep-loading {
    0% { background-position: 200% 0; opacity: 1; }
    50% { opacity: 0.8; }
    100% { background-position: -200% 0; opacity: 1; }
}

.nbep-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    position: relative;
    z-index: 2;
    filter: blur(4px);
}

.nbep-article-image.loaded {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.nbep-image-wrapper:hover .nbep-article-image {
    transform: scale(1.08) translateY(-5px);
    filter: brightness(1.05) contrast(1.02);
}

/* Author Box Component */
.nbep-author-box {
    display: flex;
    gap: 25px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(10,95,201,0.03) 50%, rgba(61,187,245,0.02) 100%);
    border-radius: 18px;
    margin: 71px 0;
    border: 4px solid rgba(10,106,202,0.12);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.1),
        0 3px 15px rgba(10,102,203,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.nbep-author-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--nbep-gradient-accent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.nbep-author-box:hover::before {
    opacity: 1;
}

.nbep-author-box:hover {
    border-color: rgba(10,107,196,0.25);
    box-shadow: 
        0 12px 50px rgba(0, 0, 0, 0.12),
        0 6px 25px rgba(10,102,197,0.18),
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-5px) scale(1.01);
}

.nbep-author-avatar {
    width: 88px;
    height: 88px;
    background: var(--nbep-gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(10,97,200,0.35),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.nbep-author-avatar::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: nbep-shine 4s infinite;
}

.nbep-author-box:hover .nbep-author-avatar {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 
        0 10px 35px rgba(10,97,210,0.45),
        0 5px 15px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.nbep-author-info {
    flex: 1;
}

.nbep-author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--nbep-primary);
    margin-bottom: 13px;
    background: linear-gradient(135deg, var(--nbep-primary) 0%, var(--nbep-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nbep-author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--nbep-text-light);
    margin-bottom: 9px;
}

.nbep-author-meta {
    font-size: 14px;
    color: var(--nbep-accent);
    font-weight: 500;
}

/* FAQ Section */
.nbep-faq-section {
    margin: 73px 0;
}

.nbep-faq-header {
    text-align: center;
    margin-bottom: 53px;
}

.nbep-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--nbep-primary);
    margin-bottom: 19px;
    background: linear-gradient(135deg, var(--nbep-primary) 0%, var(--nbep-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 19px;
}

.nbep-faq-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--nbep-gradient-accent);
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(10,104,196,0.35);
}

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

.nbep-faq-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.nbep-faq-item {
    background: white;
    border: 3px solid var(--nbep-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nbep-faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--nbep-gradient-accent);
    transform: scaleY(0);
    transition: transform 0.5s ease;
    border-radius: 17px 0 0 19px;
    box-shadow: 0 0 19px rgba(10,109,206,0.4);
}

.nbep-faq-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--nbep-gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    opacity: 0.6;
}

.nbep-faq-item:hover {
    border-color: var(--nbep-accent);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 4px 20px rgba(10,104,207,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transform: translateX(6px) translateY(-2px);
}

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

.nbep-faq-item.active::after {
    transform: scaleX(1);
}

.nbep-faq-item.active {
    border-color: var(--nbep-accent);
    box-shadow: 
        0 14px 50px rgba(10,100,208,0.25),
        0 6px 25px rgba(0, 0, 0, 0.12),
        0 2px 10px rgba(10,99,209,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, rgba(10,100,203,0.03) 50%, rgba(63,193,245,0.02) 100%);
}

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

.nbep-faq-question:hover {
    background: rgba(10,96,204,0.04);
}

.nbep-faq-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--nbep-primary);
    line-height: 1.4;
}

.nbep-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,105,196,0.12);
    border-radius: 50%;
    color: var(--nbep-accent);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 2px 8px rgba(10,95,205,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(10,106,206,0.1);
}

.nbep-faq-item.active .nbep-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: var(--nbep-gradient-accent);
    color: white;
    box-shadow: 
        0 4px 15px rgba(10,96,198,0.35),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(10,101,208,0.3);
}

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

.nbep-faq-item.active .nbep-faq-answer {
    max-height: 1000px;
}

.nbep-faq-content {
    padding: 0 30px 21px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--nbep-text);
}

.nbep-faq-content p {
    margin-bottom: 17px;
}

/* Footer */
.nbep-footer {
    background: var(--nbep-gradient-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 85px 0 46px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.nbep-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nbep-gradient-accent);
    box-shadow: 0 0 20px rgba(10,97,209,0.5);
}

.nbep-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 120px,
            rgba(10,102,201,0.03) 120px,
            rgba(10,108,210,0.03) 121px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 150px,
            rgba(61,185,245,0.02) 150px,
            rgba(62,194,245,0.02) 151px
        );
    animation: nbep-drift 40s linear infinite;
    pointer-events: none;
}

.nbep-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 52px;
    margin-bottom: 47px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.nbep-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: var(--nbep-gradient-accent);
    opacity: 0.5;
}

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

.nbep-footer-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.nbep-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 18px;
}

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

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

.nbep-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.nbep-footer-bottom {
    padding-top: 48px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.8;
}

.nbep-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--nbep-gradient-accent);
    opacity: 0.4;
}

/* Additional Detail Enhancements */
.nbep-article p {
    text-align: justify;
    text-justify: inter-word;
}

.nbep-article p:first-of-type {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--nbep-text);
}

/* Enhanced list styling */
.nbep-article ul,
.nbep-article ol {
    margin: 23px 0;
    padding-left: 36px;
    line-height: 1.9;
}

.nbep-article ul li,
.nbep-article ol li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 7px;
}

.nbep-article ul li::marker {
    color: var(--nbep-accent);
    font-weight: 700;
}

.nbep-article ol li::marker {
    color: var(--nbep-accent);
    font-weight: 600;
}

.nbep-article ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--nbep-gradient-accent);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(10,97,198,0.4);
}

.nbep-article strong {
    color: var(--nbep-primary);
    font-weight: 700;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 4px solid var(--nbep-accent);
    outline-offset: 4px;
    border-radius: 5px;
}

/* Loading states */
.nbep-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print styles */
@media print {
    .nbep-header,
    .nbep-footer,
    .nbep-hero,
    .nbep-phone-cta,
    .nbep-social-share {
        display: none;
    }
    
    .nbep-article {
        max-width:100%;
    }
    
    body {
        background: white;
    }
}

/* Reduced motion for accessibility */
@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) {
    :root {
        --nbep-border: #c2dff5;
        --nbep-text: #260c2d;
        --nbep-text-light: #6d7481;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --nbep-bg: #FFFFFF;
        --nbep-bg-light: #F0F9FF;
        --nbep-text: #1f0a2e;
        --nbep-text-light: #657082;
        --nbep-border: #b2e6f5;
    }
    
    .nbep-header {
        background: rgba(17,25,36,0.98);
    }
    
    .nbep-main {
        background: var(--nbep-bg-light);
    }
    
    .nbep-article {
        background: var(--nbep-bg-light);
    }
}

/* Enhanced button animations */
.nbep-btn--primary:active {
    transform: translateY(-1px) scale(0.98);
}

.nbep-btn--secondary:active {
    transform: translateY(-1px);
}

/* Enhanced image loading states */
.nbep-image-wrapper[data-loading="true"] {
    pointer-events: none;
}

.nbep-image-wrapper[data-loading="true"] .nbep-article-image {
    filter: blur(8px);
    opacity: 0.5;
}

/* Enhanced accessibility */
.nbep-btn:focus-visible,
.nbep-faq-question:focus-visible,
.nbep-nav-link:focus-visible {
    outline: 4px solid var(--nbep-accent);
    outline-offset: 2px;
    border-radius: 7px;
}

/* Performance optimizations */
.nbep-article-image {
    will-change: transform, opacity, filter;
}

.nbep-faq-item {
    will-change: transform;
}

.nbep-btn {
    will-change: transform;
}

/* Responsive */
@media (max-width: 768px) {
    .nbep-menu-btn {
        display: flex;
    }

    .nbep-nav {
        display: none;
    }

    .nbep-hero-title {
        font-size: 36px;
    }

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

    .nbep-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .nbep-phone-box {
        flex-direction: column;
        text-align: center;
        padding: 27px 25px;
    }

    .nbep-phone-icon {
        margin: 0 auto;
    }

    .nbep-social-share {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nbep-article h3 {
        font-size: 24px;
    }

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

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

    .nbep-faq-question {
        padding: 23px 23px;
    }

    .nbep-faq-content {
        padding: 0 26px 17px;
    }
}

/* ==================
   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: 9px;
    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: 10px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 7px 24px;
    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: 11px 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: 6px 17px;
        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: 200px !important;
        min-width: 170px !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 8px !important;
        margin: 0 auto 15px !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: 10px 21px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 7px !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 */
.nbep-wrapper, .nbep-content, .nbep-hero-inner, .nbep-companies-container, 
.nbep-article, .nbep-container, .nbep-footer-inner, .nbep-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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

/* Mobile logo override */
@media (max-width: 768px) {
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .nbep-company-logo,
    .review-logo {
        width: 45vw !important;
        min-width: 40vw !important;
        max-width: 50vw !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}
