const fs = require('fs');
const path = require('path');
const targetPath = path.join(__dirname, 'src/views/pages/marketing/MarketingStrategyV3.vue');
let content = fs.readFileSync(targetPath, 'utf8');
const newStyle = ``;
const startIndex = content.indexOf('') + ''.length;
if (startIndex !== -1 && endIndex !== -1) {
const updatedContent = content.substring(0, startIndex) + newStyle + content.substring(endIndex);
fs.writeFileSync(targetPath, updatedContent);
console.log('MarketingStrategy CSS updated successfully!');
} else {
console.log('Could not find style tag.');
}