
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Navigation */
        .mhyx-navbar {
            background: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .mhyx-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .mhyx-logo {
            flex-shrink: 0;
        }

        .mhyx-logo img {
            height: 32px;
            width: auto;
        }

        .mhyx-nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
        }

        .mhyx-nav-item a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .mhyx-nav-item a:hover,
        .mhyx-nav-item a.active {
            color: #1890ff;
        }

        .mhyx-download-btn {
            background: linear-gradient(135deg, #1890ff 0%, #1976d2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 24px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .mhyx-download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(24, 144, 255, 0.3);
        }

        /* Page Header */
        .mhyx-page-header {
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
            padding: 60px 20px;
            text-align: center;
            border-bottom: 2px solid #e8eef5;
        }

        .mhyx-page-header-title {
            font-size: 48px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .mhyx-page-header-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Breadcrumb */
        .mhyx-breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 20px;
            font-size: 13px;
            color: #999;
        }

        .mhyx-breadcrumb a {
            color: #1890ff;
            text-decoration: none;
        }

        .mhyx-breadcrumb a:hover {
            text-decoration: underline;
        }

        /* Main Content */
        .mhyx-main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Brand Introduction Section */
        .mhyx-intro-section {
            padding: 80px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mhyx-intro-content h2 {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            line-height: 1.3;
        }

        .mhyx-intro-content p {
            font-size: 16px;
            color: #555;
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .mhyx-intro-image {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        }

        .mhyx-intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Stats Grid */
        .mhyx-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 60px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

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

        .mhyx-stat-number {
            font-size: 44px;
            font-weight: 700;
            color: #1890ff;
            margin-bottom: 8px;
        }

        .mhyx-stat-label {
            font-size: 14px;
            color: #999;
            margin-bottom: 12px;
        }

        .mhyx-stat-text {
            font-size: 16px;
            color: #333;
            font-weight: 500;
        }

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

        .mhyx-section-title {
            font-size: 36px;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 20px;
        }

        .mhyx-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #1890ff 0%, #69c0ff 100%);
            border-radius: 2px;
        }

        .mhyx-timeline {
            position: relative;
            padding: 20px 0;
        }

        .mhyx-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #1890ff 0%, #e8eef5 100%);
            transform: translateX(-1px);
        }

        .mhyx-timeline-item {
            margin-bottom: 50px;
            position: relative;
        }

        .mhyx-timeline-item:nth-child(odd) {
            text-align: right;
            padding-right: calc(50% + 30px);
        }

        .mhyx-timeline-item:nth-child(even) {
            text-align: left;
            padding-left: calc(50% + 30px);
        }

        .mhyx-timeline-dot {
            position: absolute;
            left: 50%;
            top: 0;
            width: 16px;
            height: 16px;
            background: white;
            border: 3px solid #1890ff;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .mhyx-timeline-content {
            background: #f9fafb;
            padding: 24px;
            border-radius: 8px;
            border-left: 3px solid #1890ff;
        }

        .mhyx-timeline-year {
            font-size: 18px;
            font-weight: 700;
            color: #1890ff;
            margin-bottom: 8px;
        }

        .mhyx-timeline-event {
            font-size: 16px;
            color: #333;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .mhyx-timeline-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Core Values Section */
        .mhyx-values-section {
            padding: 80px 0;
            background: #f9fafb;
            margin: 0 -20px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .mhyx-values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .mhyx-value-card {
            background: white;
            padding: 32px 24px;
            border-radius: 12px;
            text-align: center;
            border-top: 4px solid #1890ff;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .mhyx-value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
        }

        .mhyx-value-icon {
            font-size: 44px;
            margin-bottom: 16px;
            line-height: 1;
        }

        .mhyx-value-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .mhyx-value-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Team Section */
        .mhyx-team-section {
            padding: 80px 0;
        }

        .mhyx-team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .mhyx-team-member {
            text-align: center;
        }

        .mhyx-member-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #1890ff 0%, #69c0ff 100%);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
        }

        .mhyx-member-name {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 4px;
        }

        .mhyx-member-role {
            font-size: 14px;
            color: #1890ff;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .mhyx-member-bio {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Partners Section */
        .mhyx-partners-section {
            padding: 80px 0;
            background: #f9fafb;
            margin: 0 -20px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .mhyx-partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .mhyx-partner-card {
            background: white;
            padding: 32px;
            border-radius: 12px;
            border-left: 4px solid #1890ff;
            transition: all 0.3s;
        }

        .mhyx-partner-card:hover {
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            transform: translateX(8px);
        }

        .mhyx-partner-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .mhyx-partner-name {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .mhyx-partner-type {
            background: #e6f7ff;
            color: #1890ff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .mhyx-partner-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Awards Section */
        .mhyx-awards-section {
            padding: 80px 0;
        }

        .mhyx-awards-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 50px;
        }

        .mhyx-award-item {
            display: flex;
            gap: 30px;
            align-items: center;
            padding: 24px;
            background: #f9fafb;
            border-radius: 12px;
            border-left: 4px solid #1890ff;
            transition: all 0.3s;
        }

        .mhyx-award-item:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .mhyx-award-year {
            font-size: 16px;
            font-weight: 700;
            color: #1890ff;
            min-width: 80px;
        }

        .mhyx-award-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .mhyx-award-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .mhyx-cta-section {
            background: linear-gradient(135deg, #1890ff 0%, #1976d2 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 80px 0;
        }

        .mhyx-cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .mhyx-cta-subtitle {
            font-size: 16px;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        .mhyx-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .mhyx-cta-btn {
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .mhyx-cta-btn-primary {
            background: white;
            color: #1890ff;
        }

        .mhyx-cta-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .mhyx-cta-btn-secondary {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
        }

        .mhyx-cta-btn-secondary:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Footer */
        .mhyx-footer {
            background: #1a1a1a;
            color: #999;
            padding: 60px 20px 20px;
            margin-top: 80px;
        }

        .mhyx-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .mhyx-footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #333;
        }

        .mhyx-footer-column h3 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .mhyx-footer-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mhyx-footer-column li {
            margin-bottom: 12px;
        }

        .mhyx-footer-column a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .mhyx-footer-column a:hover {
            color: #1890ff;
        }

        .mhyx-footer-brand {
            margin-bottom: 40px;
        }

        .mhyx-footer-brand-name {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .mhyx-footer-brand-desc {
            font-size: 14px;
            color: #999;
            line-height: 1.6;
        }

        .mhyx-footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 13px;
        }

        .mhyx-footer-links {
            display: flex;
            gap: 20px;
        }

        .mhyx-footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mhyx-footer-links a:hover {
            color: #1890ff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mhyx-page-header-title {
                font-size: 32px;
            }

            .mhyx-page-header-subtitle {
                font-size: 16px;
            }

            .mhyx-intro-section {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 0;
            }

            .mhyx-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 40px 0;
            }

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

            .mhyx-team-grid {
                grid-template-columns: 1fr;
            }

            .mhyx-partners-grid {
                grid-template-columns: 1fr;
            }

            .mhyx-timeline::before {
                left: 0;
            }

            .mhyx-timeline-item:nth-child(odd),
            .mhyx-timeline-item:nth-child(even) {
                text-align: left;
                padding-left: 50px;
                padding-right: 0;
            }

            .mhyx-timeline-dot {
                left: 0;
                transform: translateX(-8px);
            }

            .mhyx-nav-menu {
                gap: 20px;
                font-size: 13px;
            }

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

            .mhyx-footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .mhyx-cta-section {
                padding: 40px 20px;
            }

            .mhyx-cta-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .mhyx-nav-menu {
                gap: 12px;
            }

            .mhyx-page-header {
                padding: 40px 20px;
            }

            .mhyx-page-header-title {
                font-size: 24px;
            }

            .mhyx-section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .mhyx-stats-grid {
                grid-template-columns: 1fr;
            }

            .mhyx-values-grid {
                grid-template-columns: 1fr;
            }

            .mhyx-intro-section {
                padding: 30px 0;
            }

            .mhyx-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
    