
        /* 基础样式 - 使用命名空间避免冲突 */
        .kimone-about-section * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .kimone-about-section {
            font-family: 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* 英雄头图区 */
        .kimone-hero {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #003366 0%, #004C97 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .kimone-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path fill="white" d="M0,0V800H1200V0ZM600,400C600,178.5,778.5,0,1000,0H1200V800H1000C778.5,800,600,621.5,600,400Z"/></svg>');
            background-size: cover;
        }
        
        .kimone-hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .kimone-hero h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .kimone-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 我们的故事 */
        .kimone-story {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .kimone-story-content {
            flex: 1;
            min-width: 300px;
            padding: 20px 40px 20px 20px;
        }
        
        .kimone-story-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .kimone-story-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }
        
        .kimone-story-image img:hover {
            transform: scale(1.02);
        }
        
        .kimone-section-title {
            color: #003366;
            margin-bottom: 25px;
            font-size: 2.2rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .kimone-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #FF6B00;
            border-radius: 2px;
        }
        
        .kimone-story-text {
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* 我们的核心价值 */
        .kimone-values {
            padding: 100px 20px;
            background-color: #f8f9fa;
            text-align: center;
        }
        
        .kimone-values-title {
            color: #003366;
            margin-bottom: 60px;
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .kimone-values-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .kimone-value-card {
            width: 300px;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .kimone-value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .kimone-value-icon {
            background: #FF6B00;
            width: 70px;
            height: 70px;
            line-height: 70px;
            border-radius: 50%;
            margin: 0 auto 25px;
            color: white;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .kimone-value-title {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        
        .kimone-value-desc {
            color: #666;
            line-height: 1.6;
        }
        
        /* 为何选择我们 */
        .kimone-why {
            padding: 100px 20px;
            text-align: center;
            background: white;
        }
        
        .kimone-why-title {
            color: #003366;
            margin-bottom: 60px;
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .kimone-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .kimone-stat {
            width: 200px;
            padding: 20px;
        }
        
        .kimone-stat-number {
            font-size: 3rem;
            color: #FF6B00;
            margin: 0;
            font-weight: 700;
            line-height: 1;
        }
        
        .kimone-stat-text {
            font-weight: 600;
            margin-top: 10px;
            color: #003366;
            font-size: 1.1rem;
        }
        
        /* 最终行动号召 */
        .kimone-cta {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #003366 0%, #004C97 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .kimone-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path fill="white" d="M0,0V800H1200V0ZM600,400C600,178.5,778.5,0,1000,0H1200V800H1000C778.5,800,600,621.5,600,400Z"/></svg>');
            background-size: cover;
        }
        
        .kimone-cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .kimone-cta h3 {
            margin-bottom: 25px;
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .kimone-cta p {
            margin-bottom: 35px;
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .kimone-cta-button {
            background: #FF6B00;
            color: white;
            padding: 16px 45px;
            text-decoration: none;
            border-radius: 6px;
            display: inline-block;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .kimone-cta-button:hover {
            background: #e55e00;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .kimone-hero h2 {
                font-size: 2.2rem;
            }
            
            .kimone-hero p {
                font-size: 1.1rem;
            }
            
            .kimone-story {
                flex-direction: column;
                padding: 60px 20px;
            }
            
            .kimone-story-content {
                padding: 20px 0;
            }
            
            .kimone-section-title {
                font-size: 1.8rem;
            }
            
            .kimone-values, .kimone-why, .kimone-cta {
                padding: 60px 20px;
            }
            
            .kimone-values-title, .kimone-why-title {
                font-size: 1.8rem;
            }
            
            .kimone-stat {
                width: 150px;
            }
            
            .kimone-stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .kimone-hero {
                padding: 70px 20px;
            }
            
            .kimone-hero h2 {
                font-size: 1.8rem;
            }
            
            .kimone-values-grid {
                gap: 20px;
            }
            
            .kimone-value-card {
                width: 100%;
                max-width: 300px;
            }
            
            .kimone-stats {
                gap: 30px;
            }
            
            .kimone-stat {
                width: 130px;
            }
        }
    