body.about-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--charcoal);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body.about-page .container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-width: none;
    padding: 0;
}

/* Navigation */
.simple-nav {
    position: fixed;
    top: 0;
    left: 32.5%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem;
    z-index: 100;
}

.simple-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.simple-nav a:hover {
    color: var(--accent-gold);
}

.simple-nav a:hover::after {
    width: 100%;
}

/* Right Content Panel */
.right-content {
    position: absolute;
    top: 0;
    left: calc(50% - 64px);
    width: 50.1042vw;
    font-size: 2.8125vw;
    line-height: 4.2188vw;
    letter-spacing: -0.03em;
    padding-bottom: 17.7083vw;
    will-change: transform;
}

.content-section {
    padding-top: 8vw;
    width: 90%;
    position: relative;
}

.content-section:first-of-type {
    padding-top: 15.3446vw;
}

.content-section h2 {
    font-size: 3.5vw;
    font-weight: 600;
    margin-bottom: 3.5vw;
    letter-spacing: 0.01em;
    text-transform: none;
    opacity: 1;
    color: var(--white);
}

.content-section p {
    margin-bottom: 4.5vw;
}

.content-list {
    margin-left: 82px;
    list-style: none;
}

.content-list li {
    margin-top: 3.2292vw;
}

.content-list li:first-child {
    margin-top: 4.1667vw;
}

.item-title {
    font-size: 2.2917vw;
    line-height: 2.7604vw;
    margin-bottom: 0.5vw;
    font-weight: 500;
}

.item-organization {
    font-size: 1.8vw;
    line-height: 2.2vw;
    margin-bottom: 0.4vw;
    color: var(--about-text-secondary);
}

.item-details {
    font-size: 1.25vw;
    line-height: 1.6667vw;
    color: var(--about-text-muted);
    margin-bottom: 0.9375vw;
}

/* Left Panel (Minimap) */
.left-panel-outer {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(50% - 64px);
    height: 100vh;
    pointer-events: none;
    z-index: 98;
}

.left-panel-middle {
    position: absolute;
    top: 0;
    left: calc(40px + 0.5813vw);
    width: 14.4531vw;
    height: 100vh;
    pointer-events: none;
    z-index: 99;
}

.left-panel-middle .viewport-indicator {
    position: absolute;
    top: 15.1vw;
    left: 0;
    width: 100%;
    height: 100px;
    border: 1.34px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    opacity: 0.85;
    pointer-events: none;
    will-change: height;
    transition: height 0.3s ease;
    z-index: 101;
    box-sizing: border-box;
}

.left-panel-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 9.6354vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 100;
}

.left-minimap {
    position: absolute;
    top: 0;
    padding-top: 15.3446vw;
    width: 100%;
    font-size: 0.5409vw;
    line-height: 0.9366vw;
    letter-spacing: -0.03em;
    z-index: 100;
    will-change: transform;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.minimap-content {
    padding-bottom: 3.4054vw;
    pointer-events: none;
    position: relative;
}

.minimap-section {
    padding-top: 1.776vw;
    width: 90%;
    opacity: 0.85;
}

.minimap-section:first-child {
    padding-top: 3.2999vw;
}

.minimap-section > div:first-child {
    font-size: 0.65vw;
    font-weight: 600;
    margin-bottom: 0.777vw;
    text-transform: none;
    letter-spacing: 0.01em;
    opacity: 1;
    color: var(--white);
}

.minimap-section p {
    font-size: 0.5409vw;
    line-height: 0.9366vw;
    margin-bottom: 0.999vw;
}

.minimap-list {
    margin-left: 15.7692px;
    list-style: none;
}

.minimap-list li {
    margin-top: 0.7169vw;
}

.minimap-list li:first-child {
    margin-top: 0.9250vw;
}

.minimap-item-title {
    font-size: 0.4407vw;
    line-height: 0.5308vw;
    margin-bottom: 0.096vw;
    font-weight: 500;
}

.minimap-item-organization {
    font-size: 0.346vw;
    line-height: 0.423vw;
    margin-bottom: 0.077vw;
    color: var(--about-text-secondary);
}

.minimap-item-details {
    font-size: 0.2404vw;
    line-height: 0.3205vw;
    color: var(--about-text-muted);
    margin-top: 0.1803vw;
    margin-bottom: 0.18vw;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-text {
    font-size: 14px;
    letter-spacing: 0.05em;
}

#virtual-scroll {
    position: absolute;
    width: 1px;
    pointer-events: none;
}