@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #60a5fa;
    /* Lighter blue for dark bg */
    --text-color: #f9fafb;
    /* White-ish */
    --bg-color: #111827;
    /* Dark bg fallback */
    --light-bg: #1f2937;
    /* Darker grey for 3D section if needed, or keep light? 3D model has white paper? Let's keep 3D section as is or update. User only asked for text to white. */
    --accent-color: #93c5fd;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
}

/* Desktop Layout (50-50 Split) */
@media (min-width: 1024px) {
    .page-wrapper {
        flex-direction: row-reverse;
    }

    .visual-section {
        width: 50%;
        height: 100vh;
        position: sticky;
        top: 0;
        background-color: var(--light-bg);
    }

    .content-section {
        width: 50%;
        min-height: 100vh;
        padding: 4rem 3rem;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
        /* Clip the fixed background found inside this section */
        clip-path: inset(0);
        background-color: transparent;
    }

    /* Background Canvas - Fixed to Right 50% */
    #bg-canvas {
        position: fixed;
        top: 0;
        right: 0;
        left: unset;
        width: 50%;
        height: 100vh;
        z-index: 0;
        object-fit: cover;
    }
}

/* Text Styling Overlay */
.content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
    pointer-events: none;
}

/* Ensure text is strictly on top */
.content-section>*:not(#bg-canvas) {
    position: relative;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

/* Mobile Layout (Stacked) */
@media (max-width: 1023px) {
    .visual-section {
        height: 50vh;
        width: 100%;
        order: -1;
    }

    .content-section {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    #bg-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 0;
    }
}

/* Responsive adjustment for padding if needed */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1rem;
    }
}

/* Typography & Content */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--accent-color);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #e5e7eb;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #d1d5db;
}

ul {
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Highlight Box */
.highlight-box {
    background-color: #eff6ff;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: normal;
    /* Override blockquote italic */
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;