.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Hero Section */
        .hero {
            margin-top: 82px;
            background: linear-gradient(135deg, #3A5F4D 0%, #2D5A3D 100%);
            padding: 60px 0;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 50px;
            align-items: center;
        }

        .hero-content {
            color: #FFFFFF;
        }

        .hero-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 8px;
        }

        .hero-chinese {
            font-family: 'DM Sans', sans-serif;
            font-size: 20px;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .hero-tagline {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 24px;
        }

        .hero-badges {
            display: flex;
            gap: 12px;
        }

        .hero-badge {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .badge-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 26px;
            font-weight: 500;
            display: block;
            margin-bottom: 4px;
        }

        .badge-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        .hero-image {
            width: 350px;
            height: 420px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
        }
        
        /* Hero image — show actual photo if available */
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }

        /* Info Section */
        .info-section {
            background: #FFFFFF;
            padding: 60px 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .info-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
        }

        .info-value {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #1A241E;
            font-weight: 500;
            line-height: 1.5;
        }

        .info-divider {
            grid-column: 1 / -1;
            height: 1px;
            background: #E5E5E5;
            margin: 0;
        }

        /* Timeline Section */
        .timeline-section {
            background: #FAFAF8;
            padding: 80px 0;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .timeline-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 8px;
        }

        .timeline-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item:last-child .timeline-left::after {
            display: none;
        }

        .timeline-left {
            position: relative;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding-top: 8px;
        }

        .timeline-left::after {
            content: '';
            position: absolute;
            right: -30px;
            top: 28px;
            bottom: -60px;
            width: 2px;
            background: linear-gradient(180deg, #2D5A3D 0%, #4A8B5C 100%);
        }

        .timeline-year-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            font-weight: 500;
            color: #2D5A3D;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }

        .timeline-marker {
            width: 16px;
            height: 16px;
            background: #2D5A3D;
            border: 4px solid #FAFAF8;
            border-radius: 50%;
            position: absolute;
            right: -38px;
            top: 16px;
            z-index: 2;
            box-shadow: 0 0 0 4px #2D5A3D;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-marker {
            transform: scale(1.4);
            box-shadow: 0 0 0 6px rgba(45, 90, 61, 0.3);
        }

        .timeline-right {
            padding-top: 0;
        }

        .timeline-content {
            background: #FFFFFF;
            padding: 32px 36px;
            border-radius: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            left: -16px;
            top: 20px;
            width: 0;
            height: 0;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-right: 16px solid #FFFFFF;
            filter: drop-shadow(-2px 0 4px rgba(0,0,0,0.05));
        }

        .timeline-item:hover .timeline-content {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .timeline-event-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #1A241E;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .timeline-event-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }
        
        /* Last timeline item — hide connector line */
        .timeline-item.last-item .timeline-left::after {
            display: none;
        }

        /* Video Section */
        .video-section {
            background: #FFFFFF;
            padding: 80px 0;
        }

        .video-header {
            margin-bottom: 40px;
        }

        .video-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            color: #1A241E;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            aspect-ratio: 16/9;
            background: #1A241E;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
        }

        .video-play {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .video-play:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .video-caption {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            text-align: center;
        }

        .video-note {
            font-size: 12px;
            opacity: 0.7;
        }

        .video-story {
            max-width: 900px;
            margin: 40px auto 0;
            padding: 24px;
            background: #F5F5F5;
            border-radius: 12px;
        }

        .video-story-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #1A241E;
            margin-bottom: 12px;
        }

        .video-story-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery-section {
            background: #FAFAF8;
            padding: 80px 0;
        }

        .gallery-header {
            margin-bottom: 40px;
        }

        .gallery-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            color: #1A241E;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            background: #E5E5E5;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Gallery images */
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .gallery-caption {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            color: #999;
            margin-top: 12px;
        }
        
        /* WordPress block gallery */
        .gallery-content .wp-block-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding: 0;
        }
        
        .gallery-content .wp-block-image img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .gallery-content figcaption {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            color: #999;
            text-align: center;
            margin-top: 8px;
        }

        /* Related Section */
        .related-section {
            background: #FFFFFF;
            padding: 80px 0;
        }

        .related-header {
            margin-bottom: 40px;
        }

        .related-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 42px;
            font-weight: 400;
            color: #1A241E;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .related-card {
            background: #FAFAF8;
            border: 1px solid #E5E5E5;
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        /* Related card as link */
        a.related-card {
            text-decoration: none;
            display: block;
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .related-card-name {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #1A241E;
            margin-bottom: 4px;
        }

        .related-card-years {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
        }

        .related-card-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #888;
            line-height: 1.6;
        }

        /* Help Section */
        .help-section {
            background: linear-gradient(135deg, #2D5A3D 0%, #1A3A2E 100%);
            padding: 80px 0;
        }

        .help-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            color: #FFFFFF;
        }

        .help-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 38px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .help-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 32px;
        }

        .help-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            background: #FFFFFF;
            color: #2D5A3D;
            border: none;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .help-btn:hover {
            background: #E8E4DC;
            transform: translateY(-2px);
        }
        
        /* Breadcrumb in hero */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            flex-wrap: wrap;
        }
        
        .breadcrumb a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .breadcrumb a:hover {
            color: #fff;
        }
        
        .breadcrumb-separator {
            color: rgba(255,255,255,0.4);
        }
        
        .breadcrumb-current {
            color: #fff;
        }

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
            }

            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .collaboration-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-badges {
                flex-direction: column;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .collaboration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-content .wp-block-gallery {
                grid-template-columns: 1fr;
            }
        }