/* About Page Styles */
        body .page-hero {
            padding: 160px 60px 100px;
            background:
                linear-gradient(110deg, rgba(18, 17, 14, 0.92) 0%, rgba(18, 17, 14, 0.76) 50%, rgba(18, 17, 14, 0.88) 100%),
                url("../images/ptab_bg3.jpg") center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        body .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .page-hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: clamp(40px, 6vw, 60px);
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            color: var(--gray-400);
        }

        /* About Section */
        .about-intro {
            padding: 100px 60px;
            background: var(--dark);
        }

        .about-intro-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-intro-text h2 {
            font-size: 36px;
            margin-bottom: 24px;
        }

        .about-intro-text p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-intro-image {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 4/3;
            background:
                linear-gradient(135deg, rgba(18, 17, 14, 0.42) 0%, rgba(18, 17, 14, 0.12) 100%),
                url("../images/cpjz_bg.png") center/cover no-repeat;
        }

        .about-intro-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.15;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Stats Grid */
        .about-stats {
            padding: 80px 60px;
            background: var(--dark-secondary);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .stat-box {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 102, 255, 0.3);
        }

        .stat-box-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .stat-box-value {
            font-family: 'Outfit', sans-serif;
            font-size: 42px;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-box-label {
            font-size: 14px;
            color: var(--gray-400);
        }

        /* Vision & Mission */
        .vision-section {
            padding: 100px 60px;
            background: var(--dark);
        }

        .vision-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .vision-card {
            padding: 50px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .vision-icon {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .vision-card h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .vision-card p {
            font-size: 16px;
            line-height: 1.8;
        }

        /* History Timeline */
        .history-section {
            padding: 100px 60px;
            background: var(--dark-secondary);
        }

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

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            max-width: 400px;
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 40px;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 40px;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid var(--dark-secondary);
        }

        .timeline-year {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-light);
            margin-bottom: 12px;
        }

        .timeline-title {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .timeline-desc {
            font-size: 14px;
            color: var(--gray-400);
        }

        /* Honors */
        .honors-section {
            padding: 100px 60px;
            background: var(--dark-secondary);
        }

        .honors-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .honor-card {
            padding: 30px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .honor-card:hover {
            border-color: rgba(0, 212, 170, 0.3);
            transform: translateX(5px);
        }

        .honor-icon {
            font-size: 36px;
            flex-shrink: 0;
        }

        .honor-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .honor-info span {
            font-size: 13px;
            color: var(--gray-500);
        }

        /* Global Presence */
        .global-section {
            padding: 100px 60px;
            background: var(--dark);
        }

        .global-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .global-locations {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .location-card {
            text-align: center;
            padding: 30px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
        }

        .location-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .location-city {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .location-desc {
            font-size: 13px;
            color: var(--gray-400);
        }

        @media (max-width: 1024px) {
            .about-intro-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .vision-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 60px;
                padding-right: 0;
                justify-content: flex-start;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 0;
                margin-right: 0;
            }
            
            .timeline-dot {
                left: 20px;
            }
            
            .global-locations {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero {
                padding: 140px 20px 60px;
            }
            
            .about-intro,
            .about-stats,
            .vision-section,
            .history-section,
            .honors-section,
            .global-section {
                padding: 60px 20px;
            }
            
            .stats-grid,
            .global-locations {
                grid-template-columns: 1fr;
            }
        }
