 .profile-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        .profile-intro-section {
            background: white;
            border-radius: 16px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
        }
        .profile-intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
        }
        .profile-section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 30px;
            padding-bottom: 16px;
            border-bottom: 3px solid #e2e8f0;
            position: relative;
            display: inline-block;
        }
        .profile-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
        }
        .profile-intro-text {
            font-size: 17px;
            color: #4a5568;
            line-height: 2;
            text-align: justify;
            margin-bottom: 24px;
        }
        .profile-intro-text:last-child {
            margin-bottom: 0;
        }
        .profile-intro-text strong {
            color: #1e40af;
            font-weight: 600;
        }
        .profile-highlight-box {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border-left: 4px solid #1e40af;
            padding: 24px 28px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .profile-highlight-box p {
            color: #2c5282;
            font-weight: 500;
            margin: 0;
        }
        .profile-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .profile-stat-item {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 30px 24px;
            border-radius: 12px;
            text-align: center;
            color: white;
            box-shadow: 0 8px 20px rgba(30, 64, 175, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .profile-stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(30, 64, 175, 0.3);
        }
        .profile-stat-number {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .profile-stat-label {
            font-size: 15px;
            opacity: 0.95;
        }
        .profile-quote-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            border-radius: 16px;
            padding: 50px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
        .profile-quote-section::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            color: rgba(255,255,255,0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }
        .profile-quote-text {
            position: relative;
            color: white;
            font-size: 20px;
            line-height: 1.9;
            text-align: center;
            font-weight: 500;
        }
        @media (max-width: 768px) {
           
            .profile-container {
                padding: 40px 15px;
            }
            .profile-intro-section {
                padding: 30px 24px;
            }
            .profile-section-title {
                font-size: 24px;
                margin-bottom: 24px;
            }
            .profile-intro-text {
                font-size: 15px;
            }
            .profile-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .profile-stat-number {
                font-size: 28px;
            }
            .profile-stat-label {
                font-size: 13px;
            }
            .profile-quote-section {
                padding: 40px 24px;
            }
            .profile-quote-text {
                font-size: 17px;
            }
        }
        
        
.leadership-wrapper {
    max-width: 1600px;
    width: 92%;
    margin: 20px auto;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.leadership-section {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.leadership-section:nth-child(1) { animation-delay: 0.1s; }
.leadership-section:nth-child(2) { animation-delay: 0.2s; }
.leadership-section:nth-child(3) { animation-delay: 0.3s; }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.leadership-section-title {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: none;
    position: relative;
    display: inline-block;
}
.leadership-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 2px;
}
.leadership-group {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.leadership-group:hover {
    box-shadow: 0 6px 15px -5px rgba(0, 0, 0, 0.08), 0 4px 6px -6px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}
.leadership-group-title {
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.leadership-group-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 100%);
    margin-right: 10px;
    border-radius: 2px;
}
.leadership-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.leadership-item {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 8px;
    padding: 16px 20px;
    flex: 1;
    min-width: 140px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.leadership-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.leadership-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 18px -5px rgba(30, 64, 175, 0.1), 0 6px 8px -5px rgba(30, 64, 175, 0.04);
    border-color: #93c5fd;
}
.leadership-item:hover::before {
    transform: scaleX(1);
}
.leadership-position {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.leadership-name {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.leadership-members {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.leadership-member {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 18px;
    border: 1px solid #bfdbfe;
    transition: all 0.3s ease;
}
.leadership-member:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    transform: scale(1.03);
}
.leadership-member-name {
    font-size: 15px;
    color: #1e40af;
    font-weight: 600;
}
@media (max-width: 768px) {
    .leadership-wrapper {
        padding: 0 12px;
        margin: 15px auto;
    }
    .leadership-section {
        margin-bottom: 25px;
    }
    .leadership-section-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .leadership-group {
        padding: 15px;
        margin-bottom: 12px;
        border-radius: 10px;
    }
    .leadership-group-title {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .leadership-list {
        gap: 10px;
    }
    .leadership-item {
        min-width: 100%;
        padding: 14px 16px;
    }
    .leadership-position {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .leadership-name {
        font-size: 19px;
    }
    .leadership-members {
        gap: 8px 12px;
    }
    .leadership-member {
        padding: 6px 12px;
    }
    .leadership-member-name {
        font-size: 13px;
    }
}



       .strategy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        .strategy-intro-section {
            background: white;
            border-radius: 16px;
            padding: 50px;
            margin-bottom: 50px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
        }
        .strategy-intro-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #015AAA 0%, #003c96 50%, #fed806 100%);
        }
        .strategy-section-title {
            font-size: 36px;
            font-weight: 700;
            color: #015AAA;
            margin-bottom: 30px;
            padding-bottom: 16px;
            border-bottom: 3px solid #e2e8f0;
            position: relative;
            display: inline-block;
        }
        .strategy-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #015AAA 0%, #fed806 100%);
        }
        .strategy-intro-text {
            font-size: 19px;
            color: #4a5568;
            line-height: 2;
            text-align: justify;
            margin-bottom: 24px;
            text-indent: 2em;
        }
        .strategy-intro-text strong {
            color: #015AAA;
            font-weight: 600;
        }
        .strategy-highlight-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #dbeafe 100%);
            border-left: 4px solid #015AAA;
            padding: 24px 28px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .strategy-highlight-box p {
            color: #1e4d8c;
            font-weight: 500;
            font-size: 20px;
            margin: 0;
            text-align: center;
        }
        .strategy-framework-title {
            text-align: center;
            font-size: 38px;
            font-weight: 800;
            color: #015AAA;
            margin: 50px 0 30px;
        }
        .strategy-cards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 30px;
        }
        .strategy-card {
            background: white;
            border-radius: 16px;
            padding: 30px 26px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e5e7eb;
            min-height: 170px;
        }
        .strategy-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(1, 90, 170, 0.1);
        }
        .strategy-card-watermark {
            position: absolute;
            top: -15px;
            right: 16px;
            font-size: 80px;
            font-weight: 900;
            color: rgba(1, 90, 170, 0.06);
            line-height: 1;
            font-family: 'Georgia', serif;
            pointer-events: none;
            z-index: 0;
        }
        .strategy-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .strategy-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, #015AAA 0%, #003c96 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .strategy-card-icon span {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
        }
        .strategy-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #015AAA;
            margin: 0;
        }
        .strategy-card-content {
            font-size: 17px;
            color: #666;
            line-height: 1.85;
            position: relative;
            z-index: 1;
        }
        .strategy-card-content p {
            margin: 0;
        }
        .strategy-card-content strong {
            color: #015AAA;
            font-weight: 600;
        }
        .strategy-card.full-width {
            grid-column: 1 / -1;
        }
        .strategy-card.full-width .strategy-card-content {
            text-align: center;
            font-size: 17px;
            padding: 0 40px;
        }
        .strategy-quote-section {
            background: linear-gradient(135deg, #015AAA 0%, #003c96 100%);
            border-radius: 16px;
            padding: 50px;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }
        .strategy-quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }
        .strategy-quote-text {
            position: relative;
            color: white;
            font-size: 22px;
            line-height: 1.9;
            text-align: center;
            font-weight: 500;
            z-index: 1;
        }
        .strategy-quote-text strong {
            color: #fed806;
        }
        @media (max-width: 768px) {
            body {
                background: #fff;
            }
            .strategy-container {
                padding: 30px 15px;
            }
            .strategy-intro-section {
                padding: 30px 24px;
            }
            .strategy-section-title {
                font-size: 26px;
            }
            .strategy-intro-text {
                font-size: 16px;
            }
            .strategy-framework-title {
                font-size: 26px;
            }
            .strategy-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .strategy-card {
                padding: 24px 20px;
                min-height: auto;
            }
            .strategy-card-watermark {
                font-size: 60px;
                top: -10px;
                right: 10px;
            }
            .strategy-card-content {
                font-size: 15px;
            }
            .strategy-card.full-width .strategy-card-content {
                padding: 0;
            }
            .strategy-quote-section {
                padding: 30px 24px;
            }
            .strategy-quote-text {
                font-size: 17px;
            }
        }