/* 组织结构介绍 */
        .org-intro {
            padding: 80px 0;
            background-color: white;
        }
        
        .org-intro-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .org-intro-text {
            flex: 1;
        }
        
        .org-intro-image {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .org-intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .org-intro-text h2 {
            font-size: 36px;
            font-weight: 700;
            color: #0a2e5c;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .org-intro-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* 组织结构图 */
        .org-structure {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #0a2e5c;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #4dabf7, #0e74f6);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 组织架构可视化 */
        .org-chart-container {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            margin-top: 40px;
            overflow-x: auto;
        }
        
        .org-chart {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 900px;
        }
        
        .org-row {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 40px;
        }
        
        .org-node {
            background: white;
            border-radius: 10px;
            padding: 25px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            width: 200px;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .org-node:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-color: #4dabf7;
        }
        
        .org-node-ceo {
            background: linear-gradient(135deg, #0e74f6 0%, #1667cd 100%);
            color: white;
            width: 240px;
            padding: 35px 30px;
        }
        
        .org-node-ceo .node-title,
        .org-node-ceo .node-role {
            color: white;
        }
        
        .node-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 15px;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .org-node-ceo .node-avatar {
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .node-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .node-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #0a2e5c;
        }
        
        .node-role {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .org-node-ceo .node-role {
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* 连接线 */
        .connector {
            position: relative;
            width: 2px;
            height: 40px;
            background-color: #e0e0e0;
            margin: 0 auto;
        }
        
        .connector-horizontal {
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #e0e0e0;
            top: 50%;
        }
        
        /* 部门介绍部分 */
        .departments {
            padding: 80px 0;
            background-color: white;
        }
        
        .dept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .dept-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .dept-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .dept-icon {
            height: 120px;
            background: linear-gradient(135deg, #4dabf7 0%, #0e74f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 40px;
        }
        
        .dept-content {
            padding: 30px;
        }
        
        .dept-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0a2e5c;
            margin-bottom: 15px;
        }
        
        .dept-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .dept-features {
            list-style: none;
            padding: 0;
        }
        
        .dept-features li {
            font-size: 14px;
            color: #777;
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
        }
        
        .dept-features li::before {
            content: '';
            position: absolute;
            left: 0;
            color: #4dabf7;
            font-weight: bold;
        }
        
        /* 团队文化部分 */
        .team-culture {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .culture-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .culture-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .culture-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .culture-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4dabf7 0%, #0e74f6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 30px;
        }
        
        .culture-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0a2e5c;
            margin-bottom: 15px;
        }
        
        .culture-card p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(14,116,246, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-actions {
                display: none;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
            
            .org-intro-content {
                flex-direction: column;
                gap: 40px;
            }
            
            .org-chart-container {
                padding: 20px;
                overflow-x: auto;
            }
            
            .org-chart {
                min-width: 700px;
            }
            
            .org-node {
                width: 160px;
                margin: 0 10px;
                padding: 20px 15px;
            }
            
            .org-node-ceo {
                width: 200px;
                padding: 25px 20px;
            }
            
            .dept-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 80px 0 60px;
            }
            
            .org-intro, .org-structure, .departments, .team-culture {
                padding: 60px 0;
            }
            
            .org-intro-text h2, .section-title h2 {
                font-size: 30px;
            }
            
            .org-chart {
                min-width: 550px;
            }
            
            .org-node {
                width: 140px;
                margin: 0 8px;
                padding: 15px 10px;
            }
            
            .org-node-ceo {
                width: 180px;
                padding: 20px 15px;
            }
            
            .node-title {
                font-size: 16px;
            }
            
            .node-role {
                font-size: 12px;
            }
            
            .culture-cards {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 30px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            .org-intro-text h2, .section-title h2 {
                font-size: 26px;
            }
            
            .dept-grid {
                grid-template-columns: 1fr;
            }
            
            .org-chart {
                min-width: 400px;
            }
            
            .org-node {
                width: 110px;
                margin: 0 5px;
                padding: 12px 8px;
            }
            
            .org-node-ceo {
                width: 150px;
                padding: 18px 12px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }