         .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
         /* Hero Section */
        .hero {
            margin-top: 82px;
            min-height: 70vh;
            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;
        }

        .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-eyebrow {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            font-style: italic;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 500;
            color: #FFFFFF;
            line-height: 1.2;
        }

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

        .profile-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .profile-content {
            text-align: left;
        }

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

        .profile-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #666;
            margin-bottom: 4px;
        }

        .profile-date {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #999;
            margin-bottom: 24px;
        }

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

        .profile-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            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;
            text-decoration: none;
        }

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

        .profile-image {
            width: 400px;
            height: 480px;
            background: linear-gradient(135deg, #E5E5E5, #D0D0D0);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }

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

        .gallery-header {
            text-align: center;
            margin-bottom: 16px;
        }

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

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

        .gallery-item {
            aspect-ratio: 4/3;
            background: #E5E5E5;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .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: 13px;
            color: #666;
            margin-top: 8px;
            text-align: center;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
        }

        .gallery-arrow {
            width: 48px;
            height: 48px;
            background: #2D5A3D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-arrow:hover {
            background: #1A3A2E;
            transform: scale(1.1);
        }

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

        .profiling-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .profiling-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 48px;
            font-weight: 400;
            font-style: italic;
            color: #1A241E;
        }

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

        .profiling-card {
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

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

        .profiling-image {
            width: 100%;
            height: 200px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
        }

        .profiling-content {
            padding: 20px;
        }

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

        .profiling-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #666;
        }

        .profiling-btn-container {
            text-align: center;
        }

        .profiling-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 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;
        }

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

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

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

        .quote-text {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 28px;
            font-weight: 400;
            font-style: italic;
            color: #1A241E;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .quote-chinese {
            font-family: 'DM Sans', sans-serif;
            font-size: 20px;
            color: #666;
            margin-bottom: 20px;
        }

        .quote-author {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #999;
        }

        /* 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);
        }

       
        .contact-item {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #888;
            line-height: 1.8;
        }

        .contact-item strong {
            color: #FFFFFF;
            font-weight: 600;
        }

       

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

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

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

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

        @media (max-width: 768px) {

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

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

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