        .content-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1600px;
            margin: 0 auto;
            padding: 80px 20px;
            gap: 70px;
            position: relative;
        }
        
        .content-section:nth-child(odd) {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }
        
        .content-section:nth-child(even) {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        
        .content-section.reverse {
            flex-direction: row-reverse;
        }
        
        .image-container {
            flex: 1;
            min-width: 350px;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .image-container:hover {
            transform: translateY(-8px);
        }
        
        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(99, 102, 241, 0.1));
            z-index: 1;
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.6s ease;
        }
        
        .image-container:hover::before {
            opacity: 1;
        }
        
        .image-container img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 16px;
        }
        
        .image-container:hover img {
            transform: scale(1.05);
        }
        
        .text-container {
            flex: 1;
            min-width: 350px;
            padding: 40px;
            position: relative;
        }
        
        .text-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -20px;
            width: 4px;
            height: 80px;
            background: linear-gradient(180deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }
        
        .content-section.reverse .text-container::before {
            left: auto;
            right: -20px;
        }
        
        .text-container h2 {
            color: #1e293b;
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 800;
            line-height: 1.2;
            position: relative;
            background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .text-container p {
            color: #64748b;
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
            border-left: 2px solid #e2e8f0;
        }
        
        .text-container .highlight {
            background: linear-gradient(120deg, #3b82f6 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            position: relative;
        }
        
        .text-container .highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .text-container .highlight:hover::after {
            transform: scaleX(1);
        }
        
        /* 按钮容器 */
        .btn-container {
            margin-top: 40px;
            position: relative;
        }
        
        /* 了解更多按钮样式 - 现代渐变设计 */
        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
            letter-spacing: 0.5px;
        }
        
        .learn-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .learn-more-btn:hover::before {
            left: 100%;
        }
        
        .learn-more-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35);
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
        }
        
        .learn-more-btn:active {
            transform: translateY(-2px) scale(1);
        }
        
        .learn-more-btn span {
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .learn-more-btn:hover span {
            transform: translateX(5px);
        }
        
        .learn-more-btn::after {
            content: '→';
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .learn-more-btn:hover::after {
            transform: translateX(5px);
        }
        
        /* 装饰性背景元素 */
        .decorative-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            z-index: 0;
            right: -100px;
            top: -100px;
        }
        
        .content-section.reverse .decorative-circle {
            right: auto;
            left: -100px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .content-section {
                padding: 60px 20px;
                gap: 50px;
            }
            
            .image-container, .text-container {
                min-width: 300px;
            }
            
            .image-container img {
                height: 400px;
            }
            
            .text-container h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .content-section {
                flex-direction: column;
                padding: 50px 20px;
                gap: 40px;
                margin: 20px auto;
            }
            
            .content-section.reverse {
                flex-direction: column;
            }
            
            .image-container, .text-container {
                min-width: 100%;
                width: 100%;
            }
            
            .text-container {
                padding: 30px 20px;
            }
            
            .text-container::before {
                display: none;
            }
            
            .text-container h2 {
                font-size: 2rem;
                margin-bottom: 25px;
            }
            
            .text-container p {
                font-size: 1.05rem;
                padding-left: 15px;
            }
            
            .image-container img {
                height: 350px;
            }
            
            .learn-more-btn {
                padding: 16px 32px;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .decorative-circle {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .content-section {
                padding: 40px 15px;
            }
            
            .text-container h2 {
                font-size: 1.8rem;
            }
            
            .image-container img {
                height: 300px;
            }
        }
        section-title {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #3498db;
    bottom: -10px;
    left: 25%;
}
/* 标题区域样式 */
.section-title-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 3.5rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}



/* 响应式调整 */
@media (max-width: 1024px) {
    .section-title-container {
        padding: 60px 20px 30px;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title-container {
        padding: 50px 20px 20px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
 
}

@media (max-width: 480px) {
    .section-title-container {
        padding: 40px 15px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
 
}
