/* 期货专业样式优化 - 命名空间版本 */
.futures-pro-section {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
}

.futures-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f2f5;
}

.futures-section-title {
    font-size: 22px;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.futures-section-title:after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff9600;
    border-radius: 2px;
}

.futures-team-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.futures-team-text {
    flex: 1;
}

.futures-team-stats {
    flex: 0 0 300px;
}

.futures-team-subtitle {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.futures-team-description {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
}

.futures-team-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff9600;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.futures-team-cta-btn:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 150, 0, 0.3);
}

.futures-expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.futures-stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.futures-stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.futures-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff9600;
    margin-bottom: 8px;
}

.futures-stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .futures-team-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .futures-team-stats {
        flex: 1;
        width: 100%;
    }
    
    .futures-expert-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .futures-stat-item {
        padding: 20px 10px;
    }
    
    .futures-stat-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .futures-pro-section {
        padding: 20px 15px;
    }
    
    .futures-expert-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .futures-section-title {
        font-size: 20px;
    }
    
    .futures-team-subtitle {
        font-size: 16px;
    }
}