
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #FFFFFF;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Hero Section */
        .hero {
            margin-top: 82px;
            min-height: 75vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            color: #FFFFFF;
            max-width: 900px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 32px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
        }

        .breadcrumb a {
            color: #CCC;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #FFFFFF;
        }

        .breadcrumb-separator {
            color: #888;
        }

        .breadcrumb-current {
            color: #FFFFFF;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(42px, 6vw, 62px);
            font-weight: 400;
            font-style: italic;
            color: #FFFFFF;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .hero-subtitle {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #E8E4DC;
            line-height: 1.7;
        }

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

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

        .stat-item {
            text-align: center;
        }

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

        .stat-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
        }

        /* Filter Section */
        .filter-section {
            background: #FFFFFF;
            padding: 40px 0;
            border-bottom: 1px solid #E5E5E5;
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr) auto;
            gap: 16px;
            align-items: center;
        }

        .filter-select {
            padding: 14px 20px;
            background: #FFFFFF;
            border: 1px solid #DDD;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-select:hover {
            border-color: #2D5A3D;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 20px;
            background: #FFFFFF;
            border: 1px solid #DDD;
            border-radius: 8px;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #333;
        }

        .search-icon {
            width: 20px;
            height: 20px;
            color: #666;
        }

        /* Profiles Section */
        .profiles-section {
            background: #FAFAF8;
            padding: 60px 0;
        }

        .profiles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 40px;
        }

        .profile-card {
            background: #FFFFFF;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .profile-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }

        .profile-header {
            background: #2D5A3D;
            padding: 28px 28px 20px;
            color: #FFFFFF;
        }

        .profile-id {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
            opacity: 0.8;
        }

        .profile-name {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 26px;
            font-weight: 500;
            margin-bottom: 4px;
        }

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

        .profile-body {
            padding: 28px;
        }

        .profile-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .info-row {
            display: flex;
            gap: 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
        }

        .info-label {
            font-weight: 600;
            color: #333;
            min-width: 100px;
        }

        .info-value {
            color: #666;
        }

        .profile-employment {
            margin-bottom: 20px;
        }

        .employment-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #333;
            margin-bottom: 12px;
        }

        .employment-item {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .employment-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #2D5A3D;
            color: #FFFFFF;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            margin-right: 8px;
        }

        .badge-orange {
            background: #D97E43;
        }

        .profile-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .profile-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #E5E5E5;
        }

        .profile-id-small {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            color: #999;
        }

        .profile-link {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #2D5A3D;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .profile-link:hover {
            color: #1A3A2E;
            transform: translateX(4px);
        }

        /* More Profiles Card */
        .more-card {
            background: #F0F0F0;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            text-align: center;
            padding: 40px;
        }

        .more-number {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 72px;
            font-weight: 400;
            color: #333;
            margin-bottom: 12px;
        }

        .more-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            margin-bottom: 28px;
        }

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

        .more-btn:hover {
            background: #1A3A2E;
            transform: translateY(-2px);
        }

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

        .share-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .share-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 36px;
            font-weight: 400;
            font-style: italic;
            color: #1A241E;
            margin-bottom: 20px;
        }

        .share-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.8;
        }

        /* Collaboration Section */
        .collaboration-section {
            background: #F5F3EE;
            padding: 80px 0;
        }

        .collaboration-title {
            text-align: center;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 40px;
        }

        .collaboration-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .collaboration-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #FFFFFF;
            border-radius: 12px;
            min-height: 100px;
            transition: all 0.3s ease;
        }

        .collaboration-logo:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }
        
        /* Profile photo */
        .profile-photo {
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
            background: #F0F0F0;
        }
        
        .profile-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Clear filters link */
        .clear-filters {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #2D5A3D;
            text-decoration: none;
            padding: 6px 14px;
            border: 1px solid #2D5A3D;
            border-radius: 20px;
            transition: all 0.2s ease;
        }
        
        .clear-filters:hover {
            background: #2D5A3D;
            color: #fff;
        }

        /* Pagination */
        .page-number, .page-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .page-number:hover, .page-nav:hover {
            border-color: #2D5A3D;
            color: #2D5A3D;
        }
        
        .page-number.active {
            background: #2D5A3D;
            color: #fff;
            border-color: #2D5A3D;
        }
        
        /* Pagination from paginate_links */
        .pagination ul {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 0;
            margin: 60px 0 0;
            flex-wrap: wrap;
        }
        
        .pagination ul li {
            list-style: none;
        }
        
        .pagination ul li a,
        .pagination ul li span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .pagination ul li a:hover {
            border-color: #2D5A3D;
            color: #2D5A3D;
        }
        
        .pagination ul li span.current {
            background: #2D5A3D;
            color: #fff;
            border-color: #2D5A3D;
        }
        
        .pagination ul li span.dots {
            border: none;
            color: #999;
        }

        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

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

        @media (max-width: 768px) {

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

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

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