
        /* 独立模块容器，避免样式污染 - 背景透明 */
        .company-profile-header {
            background-color: transparent;
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
            max-width: 100%;
            box-sizing: border-box;
        }

        /* 背景水印 "OEM&ODM" 效果 */
        .company-profile-header::before {
            content: "OEM&ODM";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 180px;
            font-weight: 900;
            color: rgba(0, 0, 0, 0.05);
            z-index: 0;
            white-space: nowrap;
            letter-spacing: 10px;
        }

        /* 主标题样式（适配NEW PRODUCT） */
        .profile-main-title {
            font-size: 60px;
            font-weight: 700;
            color: #000;
            margin: 0 0 10px 0;
            position: relative;
            z-index: 1;
            letter-spacing: 2px;
        }

        /* 副标题（如需保留公司名则显示，不需要可删除） */
        .profile-subtitle {
            font-size: 18px;
            color: #333;
            margin: 0;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .company-profile-header::before {
                font-size: 80px;
            }
            .profile-main-title {
                font-size: 36px;
            }
            .profile-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .company-profile-header::before {
                font-size: 50px;
            }
            .profile-main-title {
                font-size: 28px;
            }
        }
    