        /* Font Classes */
        .font-jcb-bold-condensed {
            font-family: 'JCBEuro BoldCondensed Regular', sans-serif;
        }
        .font-jcb-bold {
            font-family: 'JCBEuro Bold Regular', sans-serif;
        }
        .font-jcb-roman {
            font-family: 'JCBEuro Roman Regular', sans-serif;
        }

        /* Custom Properties */
        :root {
            --glow-yellow: #FAA747;
            --eco-green: #1FAD62;
            --eco-dark: #064e3b;
            --eco-light: #dcfce7;
            --eco-orange: #f97316;
            --eco-gray: #F5F5F5;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            overflow-x: hidden;
            font-family: 'JCBEuro Roman Regular', Arial, sans-serif;
            line-height: 1.6;
        }

        /* Container */
        .container {
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Utility Classes */
        .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .flex-row { flex-direction: row; }
        .items-start { align-items: flex-start; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .hidden { display: none; }
        .overflow-hidden { overflow: hidden; }
        .mx-auto { margin-left: auto; margin-right: auto; }

        /* Grid System */
        .grid {
            display: grid;
        }
        .grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
        .grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .gap-2 { gap: 0.5rem; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }

        /* Spacing */
        .p-2 { padding: 0.5rem; }
        .p-3 { padding: 0.75rem; }
        .p-4 { padding: 1rem; }
        .p-6 { padding: 1.5rem; }
        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .py-12 { padding-top: 3rem; padding-bottom: 3rem; }
        .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
        .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
        .py-32 { padding-top: 8rem; padding-bottom: 8rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-10 { margin-bottom: 2.5rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mb-20 { margin-bottom: 5rem; }
        .mt-8 { margin-top: 2rem; }
        .mt-10 { margin-top: 2.5rem; }
        .mt-12 { margin-top: 3rem; }
        .mt-16 { margin-top: 4rem; }

        /* Colors */
        .text-white { color: white; }
        .text-black { color: black; }
        .text-gray-600 { color: #6b7280; }
        .text-gray-700 { color: #374151; }
        .text-gray-800 { color: #1f2937; }
        .text-green-400 { color: #4ade80; }
        .bg-white { background-color: white; }
        .bg-black { background-color: black; }
        .bg-eco-green { background-color: var(--eco-green); }
        .bg-eco-gray { background-color: var(--eco-gray); }
        .bg-glow-yellow { background-color: var(--glow-yellow); }

        /* Typography */
        .text-xs { font-size: 0.75rem; }
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .text-5xl { font-size: 3rem; }
        .text-6xl { font-size: 3.75rem; }
        .text-7xl { font-size: 4.5rem; }
        .leading-tight { line-height: 1.25; }
        .uppercase { text-transform: uppercase; }
        .tracking-wide { letter-spacing: 0.025em; }
        .tracking-wider { letter-spacing: 0.05em; }

        /* Sizing */
        .w-full { width: 100%; }
        .w-1\/4 { width: 25%; }
        .w-1\/2 { width: 50%; }
        .w-3\/4 { width: 75%; }
        .h-1 { height: 0.25rem; }
        .h-10 { height: 2.5rem; }
        .h-12 { height: 3rem; }
        .h-14 { height: 3.5rem; }
        .h-16 { height: 4rem; }
        .h-40 { height: 10rem; }
        .h-80 { height: 20rem; }
        .h-auto { height: auto; }
        .h-full { height: 100%; }
        .h-screen { height: 100vh; }
        .max-w-sm { max-width: 24rem; }
        .max-w-md { max-width: 28rem; }
        .max-w-2xl { max-width: 42rem; }
        .max-w-3xl { max-width: 48rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }
        .min-h-600 { min-height: 600px; }

        /* Object Fit */
        .object-cover { object-fit: cover; }
        .object-contain { object-fit: contain; }

        /* Shadows */
        .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
        .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
        .shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
        .drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }

        /* Rounded */
        .rounded-lg { border-radius: 0.5rem; }
        .rounded-full { border-radius: 9999px; }

        /* Transform */
        .scale-x-minus-1 { transform: scaleX(-1); }
        .transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

        /* Transitions */
        .transition-all { transition: all 0.3s ease; }
        .transition-opacity { transition: opacity 0.3s ease; }
        .transition-transform { transition: transform 0.3s ease; }

        /* Gradients */
        .bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
        .bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
        .from-green-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
        .to-green-600 { --tw-gradient-to: #059669; }
        .from-black { --tw-gradient-from: #000000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

        /* Hero Section */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 48rem;
        }

        /* Download Button */
        .download-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, #10b981, #059669);
            color: white;
            padding: 1.25rem 3rem;
            border-radius: 9999px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transform: scale(1);
            transition: all 0.3s ease;
            text-decoration: none;
            overflow: hidden;
        }

        .download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .download-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, #065f46, #047857);
            border-radius: inherit;
            filter: blur(0.5rem);
            opacity: 0.75;
            z-index: -1;
            transition: opacity 0.3s ease;
        }

        .download-btn:hover::before {
            opacity: 1;
        }

        .download-btn .shimmer {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: inherit;
            overflow: hidden;
        }

        .download-btn .shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: transform 1s ease;
        }

        .download-btn:hover .shimmer::after {
            transform: translateX(200%);
        }

        /* Section Styles */
        .section-bg-split {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
        }

        .section-bg-split .left-section {
            width: 60%;
            background-color: white;
        }

        .section-bg-split .right-section {
            width: 40%;
            position: relative;
        }

     .section-bg-split .right-section > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 87, 28, 0.6), transparent);
        }

        .logo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Tables */
        .table-header {
            font-family: 'JCBEuro Bold Regular', sans-serif;
            font-size: 0.875rem;
            padding: 0.75rem;
            background-color: var(--eco-green);
            color: white;
        }

        .table-row {
            padding: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: black;
            font-family: 'JCBEuro Roman Regular', sans-serif;
        }

        .table-row-alt {
            background-color: #f0f0f0;
        }

        /* ESG Cards */
        .esg-card {
            background-color: white;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .esg-card-header {
            display: flex;
        }

        .esg-card-icon {
            width: 4rem;
            background-color: #008437;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .esg-card-title {
            flex: 1;
            background-color: var(--glow-yellow);
            padding: 1rem;
        }

        .esg-card-image {
            position: relative;
            height: 20rem;
        }

        .esg-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .esg-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            background: linear-gradient(to top, black, rgba(0, 0, 0, 0.64), transparent);
        }

        .esg-card-content p {
            color: white;
            font-family: 'JCBEuro Roman Regular', sans-serif;
            font-size: 0.875rem;
            margin-bottom: 0.25rem;
        }

        /* Product Sections */
        .product-section {
            position: relative;
            padding: 3rem 0;
            background-color: white;
            overflow: hidden;
        }

        .product-bg-right {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50%;
        }

        .product-bg-building {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 50%;
        }

        .product-bg-building img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(2px);
        }

        .product-image-container {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }

        .product-image {
            width: 75%;
            height: 75%;
            object-fit: contain;
            position: relative;
            z-index: 10;
        }

        .product-content {
            width: 100%;
            position: relative;
            z-index: 10;
        }

        /* Separator Sections */
        .separator-section {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .separator-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .separator-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .separator-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
        }

        .separator-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Green Box Section */
        .green-box-hero {
            position: relative;
            padding: 4rem 0;
            overflow: visible;
        }

        .green-box-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .green-box-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .green-box-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .green-box-product {
            position: absolute;
            right: 0;
            bottom: 0;
            transform: translateY(50%);
            z-index: 20;
        }

        .green-box-product img {
            width: 100%;
            max-width: 48rem;
            height: auto;
        }

        .green-box-tables {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        /* CTA Section */
        .cta-section {
            position: relative;
            padding: 8rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .cta-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        @media (max-width: 1023px) {
    .hybrid-power-bg {
        width: 100% !important;
        height: 50%;
    }
    .hybrid-power-bg img {
        filter: blur(4px);
    }
}

@media (min-width: 1024px) {
    .hybrid-power-bg {
        width: 4% !important;
        height: 100%;
    }
    .hybrid-power-bg img {
        filter: none;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .introducing-content {
        max-width: 35rem !important;
    }
}

@media (min-width: 1280px) and (max-width: 1615px) {
    .introducing-content {
        max-width: 45rem !important;
    }
}



/* Between 1024px and 1535px - make it bigger */
@media (min-width: 1024px) and (max-width: 1535px) {
    .max-w-md{
        max-width: 48rem !important;
    }
}



        /* Gradient Separators */
        .gradient-separator {
            width: 100%;
            height: 0.25rem;
            background: linear-gradient(to right, #008437, #FAA747);
        }

        /* Responsive Design */
        @media (min-width: 640px) {
            .container { padding: 0 2rem; }
            .sm\:text-2xl { font-size: 1.5rem; }
            .sm\:text-3xl { font-size: 1.875rem; }
            .sm\:text-4xl { font-size: 2.25rem; }
            .sm\:h-10 { height: 2.5rem; }
            .sm\:h-12 { height: 3rem; }
            .sm\:h-20 { height: 5rem; }
            .sm\:h-24 { height: 6rem; }
            .sm\:inline { display: inline; }
            .sm\:flex-row { flex-direction: row; }
            .sm\:items-center { align-items: center; }
            .sm\:gap-4 { gap: 1rem; }
            .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
            .sm\:px-12 { padding-left: 3rem; padding-right: 3rem; }
            .sm\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
            .sm\:text-lg { font-size: 1.125rem; }
            .sm\:text-xl { font-size: 1.25rem; }
            .sm\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }
            .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .sm\:gap-x-4 { column-gap: 1rem; }
            .sm\:gap-y-2 { row-gap: 0.5rem; }
        }

        @media (min-width: 768px) {
            .md\:text-lg { font-size: 1.125rem; }
            .md\:text-xl { font-size: 1.25rem; }
            .md\:text-2xl { font-size: 1.5rem; }
            .md\:text-3xl { font-size: 1.875rem; }
            .md\:text-4xl { font-size: 2.25rem; }
            .md\:text-5xl { font-size: 3rem; }
            .md\:text-6xl { font-size: 3.75rem; }
            .md\:h-14 { height: 3.5rem; }
            .md\:h-24 { height: 6rem; }
            .md\:mb-3 { margin-bottom: 0.75rem; }
            .md\:mb-4 { margin-bottom: 1rem; }
            .md\:mb-6 { margin-bottom: 1.5rem; }
            .md\:mb-8 { margin-bottom: 2rem; }
            .md\:mb-12 { margin-bottom: 3rem; }
            .md\:mt-16 { margin-top: 4rem; }
            .md\:p-3 { padding: 0.75rem; }
            .md\:p-4 { padding: 1rem; }
            .md\:p-6 { padding: 1.5rem; }
            .md\:-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }
            .md\:-mt-6 { margin-top: -1.5rem; }
            .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
            .md\:px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
            .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
            .md\:hidden { display: none; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .md\:min-h-700 { min-height: 700px; }
        }

        @media (min-width: 1024px) {
            .lg\:text-xl { font-size: 1.25rem; }
            .lg\:text-2xl { font-size: 1.5rem; }
            .lg\:text-6xl { font-size: 3.75rem; }
            .lg\:text-7xl { font-size: 4.5rem; }
            .lg\:h-28 { height: 7rem; }
            .lg\:mb-12 { margin-bottom: 3rem; }
            .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
            .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
            .lg\:pt-32 { padding-top: 8rem; }
            .lg\:w-1\/2 { width: 50%; }
            .lg\:w-1\/4 { width: 25%; }
            .lg\:w-60 { width: 60%; }
            .lg\:max-w-4xl { max-width: 56rem; }
            .lg\:text-black { color: black; }
            .lg\:text-gray-800 { color: #1f2937; }
            .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
            .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
            .lg\:col-span-2 { grid-column: span 2 / span 2; }
            .lg\:col-span-3 { grid-column: span 3 / span 3; }
            .lg\:gap-12 { gap: 3rem; }
            .lg\:flex { display: flex; }
            .lg\:block { display: block; }
            .lg\:hidden { display: none; }
        }

        /* 2xl Breakpoint */
        @media (min-width: 1536px) {
            .\32xl\:block { display: block; }
            .\32xl\:hidden { display: none; }
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 1023px) {
            .section-bg-split {
                flex-direction: column;
            }
            .section-bg-split .left-section {
                width: 100%;
            }
            .section-bg-split .right-section {
                display: none;
            }
            .product-bg-right {
                display: none;
            }
            .product-content {
                width: 100%;
            }
            .green-box-product {
                position: relative;
                right: auto;
                bottom: auto;
                transform: none;
                margin: 2rem auto;
                text-align: center;
            }
            .green-box-tables {
                padding-top: 2rem;
            }
        }

        @media (max-width: 767px) {
            .grid-cols-2 {
                grid-template-columns: 1fr;
            }
            .hero-section {
                height: auto;
                min-height: 500px;
            }
            .text-5xl { font-size: 2.5rem; }
            .text-6xl { font-size: 3rem; }
            .text-7xl { font-size: 3.5rem; }
            .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
            .py-16 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
            .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
            .download-btn {
                padding: 1rem 2rem;
                font-size: 0.875rem;
            }
        }

        @media (max-width: 479px) {
            .container {
                padding: 0 1rem;
            }
            .text-3xl { font-size: 1.5rem; }
            .text-4xl { font-size: 1.875rem; }
            .text-5xl { font-size: 2rem; }
            .py-32 { padding-top: 4rem; padding-bottom: 4rem; }
            .download-btn {
                padding: 0.75rem 1rem;
                font-size: 0.75rem;
            }
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes gradient {
            0%, 100% {
                background-size: 400% 400%;
                background-position: 0% 50%;
            }
            50% {
                background-size: 400% 400%;
                background-position: 100% 50%;
            }
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            0% { transform: translateY(100%); }
            100% { transform: translateY(0); }
        }

        @keyframes energyFlow {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        .animate-float { animation: float 6s ease-in-out infinite; }
        .animate-pulse-slow { animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
        .animate-gradient { animation: gradient 15s ease infinite; }
        .animate-fade-in { animation: fadeIn 1s ease-out forwards; }
        .animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; }
        .animate-slide-up { animation: slideUp 1s ease-out forwards; }
        .animate-spin-slow { animation: spin 20s linear infinite; }
        .animate-energy-flow { animation: energyFlow 3s ease-in-out infinite; }



        /* Prevent text selection on download button */
        .download-btn {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .download-btn:focus {
            outline: none !important;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
        }

        /* Hero Section Specific Styles */
        .hero-section {
            background-color: black;
            color: white;
        }

        /* Background Image - Very thin strip on the right edge */
.bess-bg-strip {
    position: absolute;
    top: 0;
    right: 0;
    width: 4%;
    height: 100%;
}