* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #2c3e50;
            background-color: #fefefe;
            cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23cd853f" opacity="0.3"/><circle cx="10" cy="10" r="2" fill="%238b4513"/></svg>'), auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #8b4513 0%, #cd853f 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 8s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: rotate(-2deg) scale(1.05);
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

        .logo::before {
            content: "🍁";
            margin-right: 0.5rem;
            font-size: 2rem;
            animation: gentle-spin 20s linear infinite;
        }

        @keyframes gentle-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            z-index: 2;
        }

        .nav-links a:hover {
            opacity: 0.8;
            transform: translateY(-2px);
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f4d03f;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(205, 133, 63, 0.7)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f4f1eb" width="1000" height="600"/><path fill="%23d4a574" d="M0 400c100-50 200 50 300 0s200-100 300-50 200 100 300 50 200-50 100 0v200H0z"/></svg>');
            padding: 6rem 0;
            text-align: center;
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: subtle-pulse 4s ease-in-out infinite;
        }

        @keyframes subtle-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .cta-button {
            display: inline-block;
            background: rgba(255, 255, 255, 0.9);
            color: #8b4513;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Mission Section */
        .mission {
            padding: 5rem 0;
            background: #f8f5f0;
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .mission-text h2 {
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .mission-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
        }

        .mission-image {
            text-align: center;
            font-size: 8rem;
            color: #cd853f;
            opacity: 0.7;
            transition: all 0.5s ease;
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
        }

        .mission-image:hover {
            opacity: 1;
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 20px rgba(205, 133, 63, 0.5));
        }

        /* Impact Stats */
        .stats {
            background: #8b4513;
            color: white;
            padding: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat {
            padding: 2rem;
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .stat:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px) scale(1.05);
        }

        .stat h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: #f4d03f;
            transition: all 0.3s ease;
        }

        .stat:hover h3 {
            color: #fff;
            text-shadow: 0 0 15px #f4d03f;
            animation: number-dance 0.5s ease;
        }

        @keyframes number-dance {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-3deg); }
            75% { transform: rotate(3deg); }
        }

        .stat p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Programs */
        .programs {
            padding: 5rem 0;
        }

        .programs h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 3rem;
            font-weight: 300;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-left: 5px solid #cd853f;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(205, 133, 63, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .program-card:hover {
            transform: translateY(-5px) rotate(1deg);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-left-color: #f4d03f;
        }

        .program-card:hover::before {
            opacity: 1;
            animation: sweep 1.5s ease-in-out;
        }

        @keyframes sweep {
            0% { top: -50%; right: -50%; }
            100% { top: -50%; right: 150%; }
        }

        .program-card h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .program-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Programs page styles */
        .programs-detailed {
            padding: 4rem 0;
        }

        .program-category {
            margin-bottom: 4rem;
        }

        .program-category h2 {
            color: #8b4513;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .category-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 600px;
        }

        .program-detail-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            margin-bottom: 2.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border-left: 5px solid #cd853f;
        }

        .program-detail-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .program-detail-card.experimental {
            border-left-color: #f39c12;
            background: linear-gradient(to right, rgba(243, 156, 18, 0.02), white);
        }

        .program-detail-card.classified {
            border-left-color: #e74c3c;
            background: linear-gradient(to right, rgba(231, 76, 60, 0.02), white);
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 2rem 0 2rem;
        }

        .program-header h3 {
            color: #8b4513;
            font-size: 1.8rem;
            margin: 0;
        }

        .program-status {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .status-active {
            background: rgba(46, 204, 113, 0.1);
            color: #27ae60;
        }

        .status-expanding {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
        }

        .status-temporal {
            background: rgba(155, 89, 182, 0.1);
            color: #9b59b6;
        }

        .status-experimental {
            background: rgba(243, 156, 18, 0.1);
            color: #f39c12;
        }

        .status-classified {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
        }

        .program-content {
            padding: 1rem 2rem 2rem 2rem;
        }

        .program-content h4, .program-content h5 {
            color: #8b4513;
            margin: 1.5rem 0 1rem 0;
        }

        .program-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(205, 133, 63, 0.05);
            border-radius: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: bold;
            color: #8b4513;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

        .schedule-info {
            background: #f8f5f0;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            border-left: 3px solid #cd853f;
        }

        .project-spotlight {
            background: rgba(52, 152, 219, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 3px solid #3498db;
        }

        .completion-rate {
            display: block;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #3498db;
            font-weight: bold;
        }

        .mentorship-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .mentorship-type {
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            border-top: 3px solid #cd853f;
        }

        .warning-note {
            background: rgba(243, 156, 18, 0.1);
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid #f39c12;
            margin: 1.5rem 0;
        }

        .workshop-modules {
            display: grid;
            gap: 1rem;
            margin: 2rem 0;
        }

        .module {
            padding: 1rem;
            background: rgba(155, 89, 182, 0.05);
            border-radius: 8px;
            border-left: 3px solid #9b59b6;
        }

        .satisfaction-rate {
            background: #f8f5f0;
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 1.5rem;
        }

        .classified-text {
            font-family: monospace;
            background: #000;
            color: #000;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .classified-text:hover {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
        }

        .clearance-required {
            display: grid;
            gap: 0.5rem;
            margin: 1.5rem 0;
            font-family: monospace;
        }

        .clearance-level {
            color: #e74c3c;
            font-weight: bold;
        }

        .access-request-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .access-request-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .enrollment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .enrollment-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-top: 5px solid #cd853f;
        }

        .enrollment-card h4 {
            color: #8b4513;
            margin-bottom: 1rem;
        }

        .enrollment-card ol, .enrollment-card ul {
            padding-left: 1.5rem;
        }

        .enrollment-card li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #f4d03f;
        }

        .footer-section p, .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

        /* Modal and overlay styles */
        .restricted-access-overlay {
            background: rgba(0,0,0,0.9);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00ff41;
            font-family: 'Courier New', monospace;
        }

        .restricted-access-content {
            text-align: center;
            border: 2px solid #00ff41;
            padding: 30px;
            background: rgba(0,20,0,0.8);
        }

        .restricted-access-title {
            margin: 0 0 20px 0;
            color: #ff0000;
        }

        .restricted-access-text {
            margin: 20px 0;
        }

        .restricted-access-buttons {
            margin-top: 20px;
        }

        .access-btn {
            background: #ff0000;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-family: inherit;
        }

        .abort-btn {
            background: #666;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-family: inherit;
        }

        .access-disclaimer {
            font-size: 0.8em;
            margin-top: 15px;
            color: #888;
        }

        .systems-access-overlay {
            background: rgba(0,0,0,0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cccccc;
            font-family: 'Courier New', monospace;
        }

        .systems-access-content {
            text-align: center;
            border: 2px solid #cd853f;
            padding: 30px;
            background: rgba(26,26,26,0.95);
        }

        .systems-access-title {
            margin: 0 0 20px 0;
            color: #cd853f;
        }

        .systems-access-warning {
            margin: 20px 0;
            color: #ff6b6b;
        }

        .connection-terminated {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #8b4513;
            font-size: 2rem;
            text-align: center;
        }

        .connection-terminated-subtitle {
            font-size: 1rem;
        }

        .classification-level {
            color: #ff0000;
        }

        .warning-section {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #ff0000;
            background: rgba(255, 0, 0, 0.1);
        }

        .notice-section {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #cd853f;
            background: rgba(205, 133, 63, 0.1);
            text-align: center;
        }

        /* Timeline and incident report specific styles */
        .access-user-span {
            color: inherit;
        }

        .current-timeline-span {
            color: inherit;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .mission-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .nav-links {
                display: none;
            }
        }

        /* Subtle easter eggs for those who look closer */
        .mission-text p:nth-child(4) {
            font-style: italic;
            opacity: 0.8;
        }

        .program-card:nth-child(3) p::after {
            content: " (Results may vary.)";
            font-size: 0.85em;
            opacity: 0.6;
        }

        /* Liminal unsettling elements */
        .subtle-wrongness {
            font-size: 0.9rem;
            color: #666;
            opacity: 0.7;
            font-style: italic;
            animation: reality-flicker 15s infinite;
        }

        @keyframes reality-flicker {
            0%, 98% { opacity: 0.7; }
            99% { opacity: 0.1; }
            99.5% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        .time-anomaly, .reality-disclaimer, .temporal-note, .location-note, .attendance-note, .efficiency-note {
            display: block;
            font-size: 0.75rem;
            color: rgba(139, 69, 19, 0.6);
            margin-top: 0.5rem;
            font-style: italic;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat:hover .time-anomaly,
        .stat:hover .reality-disclaimer,
        .program-card:hover .temporal-note,
        .program-card:hover .location-note,
        .program-card:hover .attendance-note,
        .program-card:hover .efficiency-note {
            opacity: 1;
        }

        .time-zone {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
        }

        .reality-check {
            font-size: 0.8rem;
            color: #7f8c8d;
            margin-top: 1rem;
            font-style: italic;
            opacity: 0.8;
            animation: existence-doubt 20s infinite;
        }

        @keyframes existence-doubt {
            0%, 95% { opacity: 0.8; }
            96%, 98% { opacity: 0.3; }
            99% { opacity: 1; }
            100% { opacity: 0.8; }
        }

        .year-glitch {
            position: relative;
            animation: year-uncertainty 12s infinite;
        }

        @keyframes year-uncertainty {
            0%, 90% { content: "2024"; }
            91% { content: "19██"; }
            92% { content: "20??"; }
            93% { content: "████"; }
            94%, 100% { content: "2024"; }
        }

        .year-glitch::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
            animation: data-corruption 12s infinite;
            opacity: 0;
        }

        @keyframes data-corruption {
            90%, 94% { opacity: 1; }
            0%, 89%, 95%, 100% { opacity: 0; }
        }

        /* Counting animation for numbers */
        .counting-number {
            font-variant-numeric: tabular-nums;
        }

        /* Void spaces - subtle wrongness in layout */
        .mission::before {
            content: "";
            position: absolute;
            left: -50px;
            top: 50%;
            width: 1px;
            height: 100px;
            background: rgba(139, 69, 19, 0.1);
            animation: void-pulse 8s infinite;
        }

        @keyframes void-pulse {
            0%, 100% { opacity: 0.1; height: 100px; }
            50% { opacity: 0.3; height: 150px; }
        }

        /* Temporal distortion effects */
        .programs::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(205, 133, 63, 0.2), transparent);
            animation: time-drift 25s linear infinite;
        }

        @keyframes time-drift {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* Make sections feel slightly off-position */
        .mission {
            padding: 5rem 0;
            background: #f8f5f0;
            position: relative;
            transform: translateX(0.5px);
            animation: subtle-shift 30s ease-in-out infinite;
        }

        @keyframes subtle-shift {
            0%, 100% { transform: translateX(0.5px); }
            50% { transform: translateX(-0.5px); }
        }

        .programs {
            padding: 5rem 0;
            position: relative;
            transform: translateX(-0.3px);
            animation: counter-shift 35s ease-in-out infinite;
        }

        @keyframes counter-shift {
            0%, 100% { transform: translateX(-0.3px); }
            50% { transform: translateX(0.3px); }
        }

        /* Uncanny valley text effects */
        .mission-text h2::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: rgba(139, 69, 19, 0.3);
            animation: meaning-drain 45s infinite;
        }

        @keyframes meaning-drain {
            0%, 95% { width: 0; }
            96%, 99% { width: 100%; }
            100% { width: 0; }
        }

        /* Quantum text uncertainty */
        .programs h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #8b4513;
            margin-bottom: 3rem;
            font-weight: 300;
            position: relative;
            animation: quantum-text 60s infinite;
        }

        @keyframes quantum-text {
            0%, 98% { 
                letter-spacing: normal;
                filter: blur(0px);
            }
            98.5% { 
                letter-spacing: 2px;
                filter: blur(0.5px);
            }
            99% { 
                letter-spacing: -1px;
                filter: blur(1px);
            }
            99.5% { 
                letter-spacing: normal;
                filter: blur(0px);
            }
        }

        /* Background reality glitches */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 80%, rgba(139, 69, 19, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(205, 133, 63, 0.01) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
            animation: background-uncertainty 40s infinite;
        }

        @keyframes background-uncertainty {
            0%, 97% { opacity: 1; }
            98% { opacity: 0.7; }
            98.5% { opacity: 1.3; }
            99% { opacity: 0.9; }
            100% { opacity: 1; }
        }

        /* Multi-page navigation styles */
        .logo a {
            color: inherit;
            text-decoration: none;
        }

        .nav-links a.active {
            color: #f4d03f;
            position: relative;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #f4d03f;
        }

        /* Page-specific hero styles */
        .hero-small {
            background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(205, 133, 63, 0.8)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><rect fill="%23f4f1eb" width="1000" height="300"/><path fill="%23d4a574" d="M0 200c100-25 200 25 300 0s200-50 300-25 200 50 300 25 200-25 100 0v100H0z"/></svg>');
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
        }

        .page-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Content sections */
        .content-section {
            padding: 4rem 0;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .main-content h2 {
            color: #8b4513;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .main-content h3 {
            color: #8b4513;
            font-size: 1.6rem;
            margin: 2rem 0 1rem 0;
            font-weight: 400;
        }

        .main-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #555;
        }

        /* About page specific styles */
        .date-anomaly, .redacted {
            background: rgba(139, 69, 19, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-family: monospace;
        }

        .redacted {
            background: #000;
            color: #000;
            position: relative;
        }

        .redacted:hover {
            background: rgba(139, 69, 19, 0.1);
            color: #555;
        }

        .technical-jargon {
            font-style: italic;
            color: #8b4513;
            border-bottom: 1px dotted #cd853f;
        }

        .philosophy-quote {
            background: #f8f5f0;
            padding: 2rem;
            border-left: 5px solid #cd853f;
            margin: 2rem 0;
            font-style: italic;
            position: relative;
        }

        .philosophy-quote cite {
            display: block;
            text-align: right;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #666;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .team-member {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .member-photo {
            font-size: 4rem;
            margin-bottom: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .member-photo:hover {
            transform: scale(1.1);
        }

        .team-member h4 {
            color: #8b4513;
            margin-bottom: 0.5rem;
        }

        .role {
            color: #cd853f;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .bio {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        .certifications ul {
            list-style: none;
            padding: 0;
        }

        .certifications li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .certifications li:hover {
            background: rgba(205, 133, 63, 0.05);
        }

        /* Sidebar styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #cd853f;
        }

        .info-box h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .fact-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .fact-label {
            font-weight: bold;
            color: #8b4513;
        }

        .fact-value {
            color: #666;
        }

        .glitch-date {
            font-family: monospace;
            animation: subtle-glitch 8s infinite;
        }

        @keyframes subtle-glitch {
            0%, 95% { opacity: 1; }
            96% { opacity: 0.3; }
            97% { opacity: 1; }
            98% { opacity: 0.7; }
            99% { opacity: 1; }
        }

        .warning-box {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #ff0000;
            background: rgba(255, 0, 0, 0.1);
            text-align: center;
        }

        .info-box-mapleheart {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #cd853f;
            background: rgba(205, 133, 63, 0.1);
            text-align: center;
        }

        /* Fun interactive elements */
        .floating-hearts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1000;
            overflow: hidden;
        }

        .floating-heart {
            position: absolute;
            color: rgba(205, 133, 63, 0.3);
            font-size: 1.5rem;
            animation: float-up 8s linear infinite;
            opacity: 0;
        }

        @keyframes float-up {
            0% {
                opacity: 0;
                transform: translateY(100vh) rotate(0deg);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-20vh) rotate(360deg);
            }
        }

        /* Corporate liminal touches */
        .mission-text p:last-child {
            position: relative;
        }

        .mission-text p:last-child::after {
            content: " ✨";
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mission-text p:last-child:hover::after {
            opacity: 1;
            animation: sparkle 1s ease-in-out;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.3) rotate(180deg); }
        }

        /* Weird background patterns */
        .hero {
            background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(205, 133, 63, 0.7)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f4f1eb" width="1000" height="600"/><path fill="%23d4a574" d="M0 400c100-50 200 50 300 0s200-100 300-50 200 100 300 50 200-50 100 0v200H0z"/></svg>');
            padding: 6rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 50px 50px, 25px 25px;
            animation: pattern-shift 60s linear infinite;
            pointer-events: none;
        }

        @keyframes pattern-shift {
            0% { background-position: 0 0, 0 0; }
            100% { background-position: 50px 50px, 25px 25px; }
        }

        /* Hover effects for footer links */
        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-section a:hover {
            color: #f4d03f;
            transform: translateX(5px);
        }

        .footer-section a::before {
            content: "→ ";
            opacity: 0;
            position: absolute;
            left: -15px;
            transition: opacity 0.3s ease;
        }

        .footer-section a:hover::before {
            opacity: 1;
        }

        /* Glitch effect for specific elements */
        .glitch-text {
            position: relative;
            animation: glitch-dance 10s infinite;
        }

        @keyframes glitch-dance {
            0%, 98% { 
                transform: translateX(0);
                filter: hue-rotate(0deg);
            }
            99% { 
                transform: translateX(2px);
                filter: hue-rotate(90deg);
            }
            99.9% { 
                transform: translateX(-2px);
                filter: hue-rotate(180deg);
            }
        }

        /* Subtle breathing effect for the whole page */
        body {
            animation: page-breathe 30s ease-in-out infinite;
        }

        @keyframes page-breathe {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.02); }
        }

        /* Contact page styles */
        .contact-section {
            padding: 4rem 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .contact-form-section h2 {
            color: #8b4513;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .form-intro {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #8b4513;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #cd853f;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .submit-btn {
            background: #8b4513;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #6d3410;
            transform: translateY(-2px);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-disclaimer {
            font-size: 0.8rem;
            color: #666;
            margin-top: 1rem;
            text-align: center;
            font-style: italic;
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-method {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #cd853f;
        }

        .contact-method h3 {
            color: #8b4513;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .contact-method h4 {
            color: #8b4513;
            margin: 1rem 0 0.5rem 0;
        }

        .address, .hours, .phone-numbers, .digital-contact, .alt-methods {
            margin-bottom: 1rem;
        }

        .dimension-note {
            font-size: 0.9rem;
            color: #cd853f;
            font-style: italic;
        }

        .emergency-info {
            background: rgba(243, 156, 18, 0.05);
            border-left-color: #f39c12;
        }

        .emergency-info h3 {
            color: #f39c12;
        }

        .emergency-types {
            display: grid;
            gap: 1rem;
            margin-top: 1rem;
        }

        .emergency-type {
            padding: 1rem;
            background: white;
            border-radius: 8px;
            border-left: 3px solid #f39c12;
        }

        .emergency-type h4 {
            color: #f39c12;
            margin-bottom: 0.5rem;
        }

        .emergency-type p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        .map-section {
            margin-top: 3rem;
        }

        .map-section h2 {
            color: #8b4513;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .map-container {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 2rem;
        }

        .map-placeholder {
            font-size: 1.2rem;
            color: #8b4513;
            margin-bottom: 1.5rem;
        }

        .map-error {
            background: rgba(231, 76, 60, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px dashed #e74c3c;
        }

        .map-error em {
            color: #e74c3c;
            display: block;
            margin-bottom: 1rem;
        }

        .transportation-info h3 {
            color: #8b4513;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .transport-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .transport-option {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 3px solid #cd853f;
        }

        .transport-option h4 {
            color: #8b4513;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .transport-option p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }

        .transport-option em {
            color: #cd853f;
            font-style: italic;
        }

        /* JavaScript-injected animations moved to CSS */
        @keyframes slideInFadeOut {
            0% { opacity: 0; transform: translateX(100%); }
            15% { opacity: 1; transform: translateX(0); }
            85% { opacity: 1; transform: translateX(0); }
            100% { opacity: 0; transform: translateX(-20px); }
        }

        @keyframes slideInOut {
            0% { opacity: 0; transform: translateX(-100%); }
            20% { opacity: 1; transform: translateX(0); }
            80% { opacity: 1; transform: translateX(0); }
            100% { opacity: 0; transform: translateX(-100%); }
        }

        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateY(20px); }
            20% { opacity: 1; transform: translateY(0); }
            80% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(-20px); }
        }

        @keyframes fadeOut {
            0% { opacity: 1; }
            100% { opacity: 0; }
        }

        @keyframes textGlitch {
            0%, 100% { 
                transform: translateX(0);
                filter: hue-rotate(0deg);
            }
            25% { 
                transform: translateX(-1px);
                filter: hue-rotate(90deg);
            }
            50% { 
                transform: translateX(1px);
                filter: hue-rotate(180deg);
            }
            75% { 
                transform: translateX(-1px);
                filter: hue-rotate(270deg);
            }
        }

        @keyframes background-shift {
            0%, 100% { 
                filter: brightness(1);
                transform: scale(1);
            }
            50% { 
                filter: brightness(1.02);
                transform: scale(1.001);
            }
        }

        @keyframes fade-trail {
            0% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0); }
        }

        @keyframes flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes matrix-scroll {
            0% { background-position: 0 0; }
            100% { background-position: 0 -10px; }
        }

        @keyframes rainbow-pulse {
            0% { filter: hue-rotate(0deg) brightness(1); }
            50% { filter: hue-rotate(180deg) brightness(1.1); }
            100% { filter: hue-rotate(360deg) brightness(1); }
        }

        /* Floating notification styles */
        .floating-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(139, 69, 19, 0.95);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            border: 2px solid #cd853f;
            z-index: 9999;
            max-width: 300px;
            font-size: 0.9rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
            animation: slideInFadeOut 4s ease forwards;
        }

        /* Cursor trail dots */
        .cursor-trail-dot {
            position: fixed;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            animation: fade-trail 1s ease forwards;
        }

        /* Matrix overlay */
        .matrix-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 0, 0.03) 2px,
                rgba(0, 255, 0, 0.03) 4px
            );
            pointer-events: none;
            z-index: 9999;
            animation: matrix-scroll 0.5s linear infinite;
        }

        /* Termination overlay */
        .termination-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 69, 19, 0.95);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInOut 5s ease forwards;
        }

        /* Utility classes for previously inline styles */
        .text-red {
            color: #ff0000;
        }

        .text-classification {
            color: #ff0000;
        }

        .warning-box {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #ff0000;
            background: rgba(255, 0, 0, 0.1);
            text-align: center;
        }

        .info-box-mapleheart {
            margin-top: 50px;
            padding: 20px;
            border: 1px solid #cd853f;
            background: rgba(205, 133, 63, 0.1);
            text-align: center;
        }